Exemplo n.º 1
0
        public static void Show(string line0, string line1)
        {
            var dw = new DesktopWord();

            dw.Show();
            dw.ChangeWord(line0, line1);
            dw.ShowWordWithAnimation(1, 1);
        }
Exemplo n.º 2
0
 public static void Show(string text, string caption, int timeout)
 {
     ThreadPool.QueueUserWorkItem(new WaitCallback(CloseMessageBox),
                                  new CloseState("TipsWindow", timeout));
     DesktopWord.Show(text, caption);
 }