예제 #1
0
 /// <summary>
 /// Show a modal RadMessageBox with a message and the window title as option
 /// </summary>
 /// <param name="message">The message string to show</param>
 /// <param name="caption">The title of the message box window.(Parameter is optional)</param>
 public static void Show(string message, string caption = null)
 {
     RadMessageBox.Show(null, message, caption);
 }