Example #1
0
 public override void Show(Exception ex, string message)
 {
     var window = new GlassDialog();
     window.ShowDialog(Title, string.Empty, message + "\n\n" + ex);
 }
Example #2
0
 public override void Show(Exception ex, string format, object argument1, params object[] args)
 {
     var window = new GlassDialog();
     window.ShowDialog(Title, string.Empty, string.Format(CultureInfo.CurrentCulture, format, PrependElement(argument1, args)));
 }
Example #3
0
 public override void Show(string message, string headingCaption = "")
 {
     var window = new GlassDialog();
     window.ShowDialog(Title, headingCaption, message);
 }