예제 #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);
 }