C#/C++:在屏幕顶部创建一个附加栏
I try to write a program that shows an additional (task)bar on the top of the screen.
When other windows are maximized the bar should still be visible.
Is this possible in C# or C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SHAppBarMessage() 创建其他任务栏, ABM_NEW。您只需要一个窗口句柄,Winforms 表单就可以正常工作。如果您想通过 C# 代码执行此操作,请访问 pinvoke.net。
You create additional taskbars with SHAppBarMessage(), ABM_NEW. You just need a window handle, a Winforms form will work fine. Visit pinvoke.net if you want to do this from C# code.