使用 WinAPI 在 C# 中隐藏任务栏窗口
相信我,我用谷歌搜索过它,并期望它是一个相当容易找到的东西 - 事实证明并非如此。 我有窗把手,但没有表格。我该怎么做? 谢谢!
Believe me, I have Googled it and expected it to be a fairly easy find - turns out it isn't.
I have my window handle, but no form. How do I do it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
声明这些:
然后在显示表单之前使用它:(
将句柄更改为存储窗口句柄的任何内容)
Declare these:
And then use this before the form is shown:
(change handle to whatever your window handle is stored in)
将 Form 的 ShowInTaskbar 属性设置为 false。
Set Form's ShowInTaskbar property to false.