摘要: 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 阅读全文
posted @ 2012-12-28 21:24 曲终人散xwz 阅读(303) 评论(0) 推荐(0) 编辑