1 2 3 4 5 6 |
Dim combCol As New DataGridViewComboBoxColumn With combCol .HeaderText = "Combo Column" .Items.AddRange(New String() {"Дерево", "Дорога", "Травмпункт"}) End With DataGridView1.Columns.Add(combCol) |
1 2 3 4 5 6 |
Dim combCol As New DataGridViewComboBoxColumn With combCol .HeaderText = "Combo Column" .Items.AddRange(New String() {"Дерево", "Дорога", "Травмпункт"}) End With DataGridView1.Columns.Add(combCol) |