Изменить столбец в datagridview
Возможно ли сменить стиль столбца «АвторПотребитель» на стиль столбца «TEST» со всеми вытекающимся т.е. срабатывание условия, набором данных?
Если да, то что нужно добавитьизменить в коде?
Для наглядности добавил скрин.
Код:
private void button6_Click(object sender, EventArgs e) //TEST
{
string t1 = "Автор";
string t2 = "Потребитель";
DataGridViewComboBoxColumn cb = new DataGridViewComboBoxColumn();
cb.HeaderText = "TEST";
cb.Items.AddRange(new string[] { t2 , t1});
dataGridView2.Columns.Add(cb);
for (int i = 0; i < this.dataGridView2.RowCount; i++)
{
string s = this.dataGridView2[3, i].Value.ToString(); // столбец АвторПотребитель
if (s == "") s = "0";
if (int.Parse(s) < 1)
{
this.dataGridView2[4, i].Value = t2;
}
else
{
this.dataGridView2[4, i].Value = t1;
}
}
}
{
string t1 = "Автор";
string t2 = "Потребитель";
DataGridViewComboBoxColumn cb = new DataGridViewComboBoxColumn();
cb.HeaderText = "TEST";
cb.Items.AddRange(new string[] { t2 , t1});
dataGridView2.Columns.Add(cb);
for (int i = 0; i < this.dataGridView2.RowCount; i++)
{
string s = this.dataGridView2[3, i].Value.ToString(); // столбец АвторПотребитель
if (s == "") s = "0";
if (int.Parse(s) < 1)
{
this.dataGridView2[4, i].Value = t2;
}
else
{
this.dataGridView2[4, i].Value = t1;
}
}
}