AK.
AK.

Reputation: 763

WinForms message box with textual buttons

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?

Windows new message box

Upvotes: 6

Views: 864

Answers (4)

AK.
AK.

Reputation: 763

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.

Upvotes: 0

Kugel
Kugel

Reputation: 19864

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.

Upvotes: 0

Örjan Jämte
Örjan Jämte

Reputation: 14797

You can find all about it in MSDN.

Upvotes: 1

Eric Dahlvang
Eric Dahlvang

Reputation: 8292

Here is a code project article: Task Dialog WinForms

Upvotes: 5

Related Questions