Exemplo n.º 1
0
 public static void AddText(string name, string text)
 {
     ViewTask.UITask(() =>
     {
         if (window == null || window.IsClosed)
         {
             window = new ViewTextWindow();
         }
         window.AddText(name, text);
         window.Show();
     });
 }