Ejemplo n.º 1
0
 public void ShowNotifcation(string Text)
 {
     InAppNotif.Content = Text;
     InAppNotif.Show();
 }
Ejemplo n.º 2
0
 public void ShowNotifcation(string Text, int Length = 3000)
 {
     InAppNotif.Content = Text;
     InAppNotif.Show(Length);
 }