There is a class in which the method is described:
public static extern int MessageBox(IntPtr handle, string text, string title, uint type);
I call it with the specified parameters in the handler:
IntPtr handle = this.Handle; string text = "text"; string title = "title"; uint type = 4; WinAPIClass.MessageBox(handle, text, title, type);
MB_ICONQUESTION
you please MB_ICONQUESTION
me how to add an MB_ICONQUESTION
icon?