public void ShowNotifcation(string Text) { InAppNotif.Content = Text; InAppNotif.Show(); }
public void ShowNotifcation(string Text, int Length = 3000) { InAppNotif.Content = Text; InAppNotif.Show(Length); }