Msgbox help
how can i create a msgbox with custom "dialog button", i mean, not a form, a msgbox with custom dialog buttons
4 Replies
MessageBoxButtons Enum (System.Windows.Forms)
Specifies constants defining which buttons to display on a MessageBox.
You can feel free to use the new
TaskDialog
since Windows Vista, https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.taskdialog?view=windowsdesktop-8.0 which supports many kinds of customization.TaskDialog Class (System.Windows.Forms)
A task dialog allows to display information and get simple input from the user. It is similar to a MessageBox (in that it is formatted by the operating system) but provides a lot more features.
GitHub
GitHub - ookii-dialogs/ookii-dialogs-winforms: Awesome dialogs for ...
Awesome dialogs for Windows Desktop applications built with Microsoft .NET (WinForms) - ookii-dialogs/ookii-dialogs-winforms
I don't understand how to use it
Damn
Simply how to import it
The methods are pretty simple and similar to show() of Messagebox