如何设置属性DropDownStyle

时间:2011-06-28 14:29:02

标签: winforms c#-2.0

我在DataGridView列DataGridViewComboBoxColumn中创建。 我需要设置样式DropDown。

this.combobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;

怎么做?

1 个答案:

答案 0 :(得分:1)

使用DataGridViewComboBoxColumn.FlatStyle PropertyFlatStyle属性会影响此列中单元格的下拉箭头的行为和外观。

dataGridViewComboBoxColumn.FlatStyle = FlatStyle.Flat;