Ejemplo n.º 1
0
 public static void Show(string text, InfoTypes type)
 {
     Application.Current?.Dispatcher?.Invoke(() =>
     {
         InformationAdded?.Invoke(new InformationModel(type, DateTime.Now, text));
     });
 }
Ejemplo n.º 2
0
 public static void Show(string text, InfoTypes type)
 {
     InformationAdded?.Invoke(new InformationModel(type, DateTime.Now, text));
 }