void Alert(string alert, string title) { AlertWindow aw = new AlertWindow(); aw.Owner = MW; aw.alertLabel.Content = alert; aw.Title = title; aw.ShowDialog(); }
void Alert(string alert) { AlertWindow aw = new AlertWindow(); aw.Owner = MW; aw.alertLabel.Content = alert; //aw.WindowStyle = WindowStyle.None; aw.ShowDialog(); }