Windows 任务栏 API

发布于 2024-10-19 18:04:31 字数 1539 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

很糊涂小朋友 2024-10-26 18:04:31

请参阅 CreateWindowEx 中的各种扩展窗口样式,并找出适合的一种您的需求。 (其中许多都处理任务栏项目,不仅仅是一个。)然后只需使用 SetWindowLong 设置样式即可。

还有ITaskbarList::DeleteTab,但我真的

See the various extended window styles in CreateWindowEx, and figure out which one suits your needs. (Many of them deal with taskbar items, it's not just one.) Then just set the style with SetWindowLong.

There's also ITaskbarList::DeleteTab, but I really don't recommend this for hiding your window.

白首有我共你 2024-10-26 18:04:31

我希望窗口从视图中隐藏,包括从任务栏隐藏;

隐藏窗户。 ShowWindow

ShowWindow(hwnd, SW_HIDE); 

I want the window to be hidden from view, including from the taskbar;

Hide the window. ShowWindow

ShowWindow(hwnd, SW_HIDE); 
半夏半凉 2024-10-26 18:04:31

您是否考虑过在系统托盘中创建图标或创建 Windows 服务

Have you considered creating an icon in the system tray or creating a windows service?

梦里人 2024-10-26 18:04:31

您想要使用 CreateWindowEx 创建窗口 并使用 WS_EX_TOOLWINDOW 样式从任务栏隐藏窗口。另外,创建窗口后,请使用 SW_HIDE 调用 ShowWindow。

You want to create the windows using CreateWindowEx and use the WS_EX_TOOLWINDOW style to hide the window from the taskbar. Also, once you've created the window, call ShowWindow with SW_HIDE.

治碍 2024-10-26 18:04:31

我会尝试向他们发送 WM_SETICON 以及 NULL 的大图标和小图标。

I'd try to send them WM_SETICON with NULL for both the big and small icons.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文