程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> c#啟動本機程序

c#啟動本機程序

編輯:關於C#

using system;
    using system.Collections.Generic;
    using system.ComponentModel;
    using system.Data;
    using system.Drawing;
    using system.Text;
    using system.windows
.Forms;
    using system.IO;
    using system.Runtime.InteropServices;
    using system.Security;
    using system.Diagnostics; //命名空間提供特定的類,使您能夠與系統進程、事件日志和性能計數器進行交互。
    namespace windows
Application1
    {
      /// <summary>
      /// 啟動本機系統程序
      /// 只需要把程序的exe文件寫入Process.Start("")中就行
      /// </summary>
      public partial class Form1 : Form
      {
        public Form1()
        {
          InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
          Process.Start("calc.exe");//計算器
        }
        private void button2_Click(object sender, EventArgs e)
        {
          Process.Start("TTPlayer.exe");
        }
        private void button3_Click(object sender, EventArgs e)
        {
          Process.Start("IEXPLORE.EXE");
        }
      }
    }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved