/// <summary> /// Show a dialog window with given title, message and image. /// </summary> /// <param name="message">The message to show</param> /// <param name="title">The window title</param> /// <param name="image">The image for the window icon</param> /// <returns>True if "Ok" was clicked, false otherwise</returns> public static bool Show(string message, string title, Image image) { DlgConfirmation dlg = new DlgConfirmation(message, title, image); return(dlg.ShowDialog() == true); }