Ejemplo n.º 1
0
 public static void Show(string title, string text)
 {
     using (AboutBoxWnd form = new AboutBoxWnd())
       {
     form.Text = title;
     form.label1.Text = text;
     form.ShowDialog();
       }
 }
Ejemplo n.º 2
0
 public static void Show(string title, string text)
 {
     using (AboutBoxWnd form = new AboutBoxWnd())
     {
         form.Text        = title;
         form.label1.Text = text;
         form.ShowDialog();
     }
 }