예제 #1
0
 public static void Show(string title, string text)
 {
     using (AboutBoxWnd form = new AboutBoxWnd())
       {
     form.Text = title;
     form.label1.Text = text;
     form.ShowDialog();
       }
 }
예제 #2
0
파일: Aboutbox.cs 프로젝트: d3x0r/xperdex
 public static void Show(string title, string text)
 {
     using (AboutBoxWnd form = new AboutBoxWnd())
     {
         form.Text        = title;
         form.label1.Text = text;
         form.ShowDialog();
     }
 }