DataGridViewComboBoxColumn::DisplayStyle Property
Gets or sets a value that determines how the combo box is displayed when not editing.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property DataGridViewComboBoxDisplayStyle DisplayStyle { DataGridViewComboBoxDisplayStyle get(); void set(DataGridViewComboBoxDisplayStyle value); }
Property Value
Type: System.Windows.Forms::DataGridViewComboBoxDisplayStyleA DataGridViewComboBoxDisplayStyle value indicating the combo box appearance. The default is DropDownButton.
| Exception | Condition |
|---|---|
| InvalidOperationException | The value of the CellTemplate property is null. |
The DisplayStyle property affects the appearance of cells in the column when they are not in edit mode, and regardless of whether they are read-only. When a cell is in edit mode, it always looks like a ComboBox control.
If the DisplayStyleForCurrentCellOnly property value is false, the DisplayStyle property affects all cells in the column; otherwise, the DisplayStyle property affects only the current cell.
The behavior and appearance of the drop-down arrow in the cells is indicated by the FlatStyle property.
To enable cell highlighting when the mouse pointer is over a cell, you must set the DisplayStyle property to ComboBox and the FlatStyle property to Popup.
Getting or setting this property gets or sets the DisplayStyle property of the object returned by the CellTemplate property. Setting this property also sets the DisplayStyle property of every cell in the column and refreshes the column display. To override the specified value for individual cells, set the cell values after you set the column value.
Available since 2.0