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);
}
}
}