public void warn(object sender, RoutedEventArgs e)
 {
     InfoBox.InfoBoxWindow i = new InfoBox.InfoBoxWindow("This is a warning!!", 3000, true);
     i.Show();
 }
 public void info(object sender, RoutedEventArgs e)
 {
     InfoBox.InfoBoxWindow i = new InfoBox.InfoBoxWindow("This is for your information", 3000);
     i.Show();
 }