Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个 .NET 应用程序,我需要在该应用程序中运行 Windows 命令提示符。
这可能吗?如果是,那怎么办?
我需要制作如下图所示的东西:
http://imgur.com/4sEen
看一下 System.Diagnostics.Process 类。使用此类启动 cmd 并重定向 Streams。然后你可以画一个白色字体的位图并展示给用户。
无论如何,就像 Ramhound 一样,我会直接显示命令提示符。
使用Process.Start:
Process.Start
Process.Start("cmd.exe");