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.
我是 Windows 开发的新手,正在尝试使用 C#/XAML 创建一个 Windows 8 应用程序。在我的应用程序中,我想停止现有服务。这可能吗?我一直无法找到任何有关此的文档...
不,你不能从 Metro 风格的应用程序中做这样的事情。您需要创建一个常规的 win32 应用程序。
查找 ServiceController API。它可以在 WPF 应用程序中使用。有一个开始和一个停止,能够检查当前状态。它甚至允许您连接到远程机器并以这种方式控制它们。