摘要:
Codeusing Microsoft.Win32;private void btnShowOpen_Click(object sender, EventArgs e) { OpenFileDialog open = new OpenFileDialog(); open.Filter = "可执行文件(*.exe)|*.exe"; if (open.ShowDialog() == DialogResult.OK) { txtPath.Text = open.FileName; } } private bool runWhenStart(bool started,string 阅读全文