private void Form4_Load(object sender, EventArgs e)
{
comboBox1.Items.Add("Коломиец Андрей Михайлович");
comboBox1.Items.Add("Чкалов Павел Сергеевич");
comboBox1.Items.Add("Шумаков Олег Константинович");
comboBox1.Items.Add("Костров Олег Никитич");
comboBox1.Items.Add("Варашилов Никита Игоревич");
}
private void button1_Click(object sender, EventArgs e)
{
for (int i = 0; i < dataGridView1.RowCount; i++)
{
dataGridView1.Rows[1].Selected = false;
for (int j = 0; j < dataGridView1.ColumnCount; j++)
if (dataGridView1.Rows[i].Cells[j].Value != null)
if (dataGridView1.Rows[i].Cells[j].Value.ToString().Contains(comboBox1.Text))
{
dataGridView1.Rows[i].Selected = true;
break;
}
}
dataGridView1.DataSource = controller.UpdataSorudniki();
}