Ejemplo n.º 1
0
 public static void Show(string title, string description)
 {
     // using construct ensures the resources are freed when form is closed
     using (var form = new CoreMessageBox(title, description))
     {
         form.ShowDialog();
     }
 }
Ejemplo n.º 2
0
 public static void Show(string title, string description)
 {
     // using construct ensures the resources are freed when form is closed
     using (var form = new CoreMessageBox(title, description))
     {
         form.ShowDialog();
     }
 }