c#直接对计算机的控制面板等调用

  • Post author:
  • Post category:其他


using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Diagnostics; namespace Ex224 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { Process.Start(“ncpa.cpl”);//网络连接 } private void button4_Click(object sender, EventArgs e) { Process.Start(“main.cpl”);//鼠标 } private void button6_Click(object sender, EventArgs e) { Process.Start(“mmsys.cpl”);//声音 } private void button1_Click(object sender, EventArgs e) { Process.Start(“sysdm.cpl”);//系统 } private void button3_Click(object sender, EventArgs e) { Process.Start(“desk.cpl”);//显示 } private void button5_Click(object sender, EventArgs e) { Process.Start(“Nusrmgr.cpl”); } private void button9_Click(object sender, EventArgs e) { Process.Start(“Inetcpl.cpl”);//internet属性 } private void button8_Click(object sender, EventArgs e) { Process.Start(“Appwiz.cpl”);//添加删除程序 } private void button7_Click(object sender, EventArgs e) { Process.Start(“Access.cpl”);//辅助功能 } } }

转载于:https://www.cnblogs.com/xiacy/archive/2011/10/24/2485701.html