Process.Start -(初学者)帮助
我有一个用 C++ 编写的 .exe 文件。我用过;
Process.Start("E:\\cmdf.exe");
从 C# 执行代码。
现在我需要:
- 隐藏命令提示符
- 然后找到一种方法来停止命令提示符(如关闭应用程序)
我该怎么做?
I have a .exe file written in C++. i have used;
Process.Start("E:\\cmdf.exe");
to execute the code from C#.
Now i need to:
- hide the command prompt
- Then to find a way to stop the command prompt (as in closing the application)
How do i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要在没有命令窗口的情况下启动,请尝试以下操作:
然后结束进程:
To start without command window try this:
Then to end the process:
在这里查看我的答案:使用 Process.Start 时如何隐藏控制台应用程序用户界面?
See my answer here: How do I hide a console application user interface when using Process.Start?
要添加到其他答案:
还有
WindowStyle
属性,您可以将其设置为WindowStyle.Hidden
。To add to the other answers:
There is also the
WindowStyle
property which you can set toWindowStyle.Hidden
.这是隐藏命令提示符的代码,它对我有用,希望它也能帮助您。
This is the code to Hide the command prompt it works for me hope it will help you too.