可以全屏打开程序的应用程序?
我需要制作一个在全屏模式下启动新程序(例如记事本)的应用程序。我可以在 c# 中做到这一点吗?
我希望有一个代码示例。谢谢:)
I need to make an application that starts new program (ex. notepad) in fullscreen mode. Can I do that in c#?
I'd appreciate a code sample.Thanks:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将
Process.Start
与ProcessStartInfo
对象其中有一个WindowStyle
< /a> 属性。您可以设置该属性,以便窗口开始最大化。改编自
Process.Start
中的示例:如果进程已在运行,请参阅 这里
You can use
Process.Start
with aProcessStartInfo
object which has aWindowStyle
property. You can set that property so that the window starts maximized.Adapted from the example at
Process.Start
:If the process is already running, see here
F11
键最常用于进入和退出全屏模式,因此在程序启动后,您可以调用 User32.SendInput WinApi (使用 Nuget 中的 PInvoke.User32 )。以同样的方式,您可以调用任何其他热键命令来进入全屏模式。
F11
key is most often used to enter and exit fullscreen mode, so after program starts, you can call User32.SendInput WinApi (use PInvoke.User32 from Nuget).In the same way you can call any other hotkey command to enter fullscreen mode.