gpt4 book ai didi

c# - 创建一个可以打开应用程序的 Windows C# App

转载 作者:太空狗 更新时间:2023-10-30 01:08:50 26 4
gpt4 key购买 nike

我最近有了创建一个 C# Windows 窗体应用程序的想法,使用户能够从那里启动应用程序。这是我的“原始”代码:

Button1 点击事件...

{                     

System.Diagnostics.Process.Start("WINWORD.EXE");

}

Button2 点击事件...

{

System.Diagnostics.Process.Start("WINRAR.EXE");

}

......

还有很多...

任何人都可以告诉我在找不到应用程序的情况下处理事件的代码是什么(例如,WINWORD.EXE 不可用等等,等等)?

我尝试使用“if 语句”但无济于事,出现编译错误。

有人能帮帮我吗?如何创建一个函数,让用户向 C# 应用程序添加一些应用程序快捷方式?

提前感谢大家。

最佳答案

System.IO.File.Exists("your file path");

如果文件存在则返回真

if(System.IO.File.Exists("your file path"))
{
//Do something
}
else
{
OpenFileDialog _File = new OpenFileDialog())
_File.ShowDialog(); // this will open a filedialog box to browse
}

关于c# - 创建一个可以打开应用程序的 Windows C# App,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8292173/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com