public static void Show(string message, string title = null,int second=3)
 {
     DialogWindow win = new DialogWindow();
     win.ShowDialog1(message,title,second);
 }
Exemple #2
0
        public static void Show(string message, string title = null)
        {
            DialogWindow win = new DialogWindow();

            win.ShowDialog(message, title);
        }
 public static void Show(string message, string title = null)
 {
     DialogWindow win = new DialogWindow();
     win.ShowDialog(message, title);
 }
Exemple #4
0
        public static void Show(string message, string title = null, int second = 3)
        {
            DialogWindow win = new DialogWindow();

            win.ShowDialog1(message, title, second);
        }