问题描述
- Silverlight 调用了一个外部程序 怎么把它关闭了
-
打开这个程序我是 这样调用的:
private void CmdRun(string exeStr)
{
if (App.Current.HasElevatedPermissions)
{
using (dynamic cmd = AutomationFactory.CreateObject("WScript.shell"))
{
cmd.Run(exeStr, 2, false);
}
}
}
exeStr是我要打开的外部程序的路径,比如:@"D:/大头菜.exe"现在我想实现的是,点击一个页面的button 把这个叫做大头菜的exe关闭 但silverlight的页面还在,怎么实现呢?
解决方案
再做一个a.exe,调用那个a.exe
他内部就是关闭进程 大头菜.exe
解决方案二:
WPF调用外部程序
时间: 2024-12-02 18:15:50