我在WPF应用程序中看到,我们可以像this example一样轻松创建Thumb按钮, 但无论如何我无法找到它在Winform应用程序中工作。我试过这个
using System.Windows.Shell;
...
TaskbarItemInfo task = new TaskbarItemInfo();
ThumbButtonInfo button = new ThumbButtonInfo();
this.Controls.Add(button); //Error, I don't know how to add the ThumbButtonInfo to my winform.
我搜索了this answer,看到有Winform的Windows API代码包,但我更喜欢System.Windows.Shell。但是使用Windows API Code Pack,我仍然没有理想的方法为我的winform添加一个拇指按钮。
所以我的问题是:如何在C#Winform应用程序中添加一个简单的拇指按钮(仅使用System.Windows.Shell它是最好的)?
感谢阅读。