Information needed for code for Windows 7 taskbar in C #

What I still know about how to code for win 7 taskbar functions is that I can use the .NET package or the WinAPI code package in .net3.5 or pinvoke.

My question is, what can I code for win 7 taskbar functions using .net3.0 or prev and with pinvoke I can use functions like thumbnail toolbar, jumplist, overlay icon

thank

+3
source share
2 answers

Why not get the Code Package and try using it with a lower version of the .NET Framework? I read a lot of code there, and few if any of them rely on .NET 3.5 features. If you use VS 2010, you may be able to create it against 2.0 or whatever you use without problems. The license allows you to integrate the code from the library into your project in order to modify it, so that you basically treat it as your own, so you have nothing to lose.

+2
source

There is a series of articles in the new taskbar API for debugging guru Sasha Goldstein . You should take a look at the "Overlay Badges and Pass APIs" .

Windows 7 Microsoft Code. , IMClient:

IMClient , ().

alt textalt textalt text

, , .

+2

Source: https://habr.com/ru/post/1767843/


All Articles