C#单击按钮然后调用文件夹下的word文档 就是单击按钮然后弹出一个word文档

日期:2022-02-23 00:43:47 人气:1

C#单击按钮然后调用文件夹下的word文档 就是单击按钮然后弹出一个word文档

System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.UseShellExecute = true;
p.StartInfo.FileName = @"d:\xxx.doc";
p.Start(
    A+
热门评论