Пример #1
0
 public static void Toast(
     Window owner,
     string title = "Warning",
     string message = "Something terrible may have just happened and you are being notified of it.",
     ToasterPosition position = ToasterPosition.PrimaryScreenBottomRight,
     ToasterAnimation animation = ToasterAnimation.SlideInFromRight,
     double margin = 10.0)
 {
     var toaster = new WarningToaster(owner, title, message, position, animation, margin);
     toaster.Show();
 }
Пример #2
0
        public static void Toast(
            Window owner,
            string title               = "Warning",
            string message             = "Something terrible may have just happened and you are being notified of it.",
            ToasterPosition position   = ToasterPosition.PrimaryScreenBottomRight,
            ToasterAnimation animation = ToasterAnimation.SlideInFromRight,
            double margin              = 10.0)
        {
            var toaster = new WarningToaster(owner, title, message, position, animation, margin);

            toaster.Show();
        }