private void AddButton_Click(object sender, RoutedEventArgs e) { if (sidesTextBox.Text == "" || colorTextBox.Text == "") { msgTextBlock.Foreground = new SolidColorBrush(Colors.Red); msgTextBlock.Text = "Данные не были введены"; } else { try { flatness.AddPolygons(colorTextBox.Text, Flatness.SidesToInt(sidesTextBox.Text)); msgTextBlock.Foreground = new SolidColorBrush(Colors.Green); msgTextBlock.Text = "Многоугольник успешно добавлен."; } catch { msgTextBlock.Foreground = new SolidColorBrush(Colors.Red); msgTextBlock.Text = "Данные некоректно введены!"; } } }
private void addButton_Click(object sender, EventArgs e) { if (sidesTextBox.Text == "" || colorTextBox.Text == "") { msgLabel.ForeColor = Color.FromName("Red"); msgLabel.Text = "Данные не были введены"; } else { try { flatness.AddPolygons(colorTextBox.Text, Flatness.SidesToInt(sidesTextBox.Text)); msgLabel.ForeColor = Color.FromName("Green"); msgLabel.Text = "Многоугольник успешно добавлен."; } catch { msgLabel.ForeColor = Color.FromName("Red"); msgLabel.Text = "Данные некоректно введены!"; } } }