Пример #1
0
 public void ShowNotifcation(string Text)
 {
     InAppNotif.Content = Text;
     InAppNotif.Show();
 }
Пример #2
0
 public void ShowNotifcation(string Text, int Length = 3000)
 {
     InAppNotif.Content = Text;
     InAppNotif.Show(Length);
 }