private void OKbutton_Click(object sender, EventArgs e) { if (NameTextBox.TextLength != 0) { if (AutoCategoryListService.Check(NameTextBox.Text)) { MessageBox.Show("Такая категория уже зарегестрировна", "", MessageBoxButtons.OK, MessageBoxIcon.Warning); this.Close(); } else { AutoCategoryRegistr autocategoryregistr = new AutoCategoryRegistr(this); autocategoryregistr.setNameTextBox(NameTextBox); autocategoryregistr.setflag(flagwho); autocategoryregistr.ShowDialog(); this.Hide(); } } if (NameTextBox.TextLength == 0) { NameTextBox.BackColor = Color.IndianRed; } }