Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个无窗口的任务栏按钮,就像 Windows Live Messenger 一样:
我怎么能在 C# 中做到这一点?Windows API 代码包看起来很有帮助,但我还没有找到任何方法来创建任务栏按钮。
创建一个隐藏窗口(CreateWindow 然后 ShowWindow(hwnd, SW_HIDE)。这将使任务栏显示一个图标。
然后使用 ITaskbarList、ITaskbarList2、ITaskbarList3、ITaskbarList4 API 为窗口设置不同的缩略图。