在 C#.Net 中,给定窗口句柄如何强制窗口全屏?
我已经获得了进程主窗口的句柄,并且想强制执行该操作 窗口到全屏。 我正在使用 .Net Framework V2.0 SP1 在 c#.Net 中进行编程
I've obtained the handle to a processes Main Window and would like to force that
window to full screen. I'm programming in c#.Net with .Net framework V2.0 SP1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里有一篇文章向您展示了如何执行此操作。 然而,对于大多数调用,它需要 P/Invoke 到 Windows API。
Here is an article that shows you how to do this. It requires P/Invoke into the Windows API for most of the calls, however.
ShowWindow - p/invoked,当然。
ShowWindow - p/invoked, of course.