Windows 7(?) introduced a new message box feature (I'm not sure what it is called so I've uploaded a picture). How can I create such a box in C# with WinForms?
Asked
Active
Viewed 836 times
6
-
3TaskDialog is available in the Windows API Code Pack: http://code.msdn.microsoft.com/WindowsAPICodePack – Hans Passant Dec 03 '10 at 19:56
4 Answers
0
Hello there is a library with all vista and win7 dialogs:
http://www.ookii.org/software/dialogs/
The downside is that it requires full .Net not just client profile.

Kugel
- 19,354
- 16
- 71
- 103
0
As Hans Passant pointed out, the TaskDialog .NET API is provided by the Windows API Code Pack. There is an interesting article (German) about task dialogs and other functionality provided by the API.

AK.
- 743
- 7
- 13