摘要: private void btnOpenFile_Click(object sender, EventArgs e) { string _FilePath = this.txtFileFullPath.Text.Trim(); if (File.Exists(_FilePath)) { //打开指定文件 System.Diagnostics.Process.Start(_FilePath); } } ... 阅读全文
posted @ 2013-10-25 11:54 zhangsir 阅读(501) 评论(0) 推荐(0) 编辑