public void DeliteQuestion(object sender, RoutedEventArgs e) { theme.Questions[Dif - 1].Remove(this); qPan.Children.Remove(can); MW.UpdateCounts(); //MW.SaveThemes(); }
public void del_theme(object sender, EventArgs e) { MessageBoxResult dialogResult = MessageBox.Show("Вы действительно хотите удалить эту тему?", "Удалить тему?", MessageBoxButton.YesNo); if (dialogResult == MessageBoxResult.Yes) { if (MW.choosedTheme == this) { MW.ChooseTheme(null); } MW.Themes.Remove(this); stac.Children.Remove(theme_button); } MW.UpdateCounts(); }