c#

位置:IT落伍者 >> c# >> 浏览文章

c# 启动本机程序


发布日期:2023年04月05日
 
c# 启动本机程序

using System;

using SystemCollectionsGeneric;

using SystemComponentModel;

using SystemData;

using SystemDrawing;

using SystemText;

using SystemWindowsForms;

using SystemIO;

using SystemRuntimeInteropServices;

using SystemSecurity;

using SystemDiagnostics; //命名空间提供特定的类使您能够与系统进程事件日志和性能计数器进行交互

namespace WindowsApplication

{

/// <summary>

/// 启动本机系统程序

/// 只需要把程序的exe文件写入ProcessStart()中就行

/// </summary>

public partial class Form : Form

{

public Form()

{

InitializeComponent();

}

private void button_Click(object sender EventArgs e)

{

ProcessStart(calcexe);//计算器

}

private void button_Click(object sender EventArgs e)

{

ProcessStart(TTPlayerexe);

}

private void button_Click(object sender EventArgs e)

{

ProcessStart(IEXPLOREEXE);

}

}

}

上一篇:C#对数据库的读取,写,更新和删除

下一篇:.Net平台应用程序唯一运行实例