Editing in Windows Forms ComboBox (SfComboBox)

6 Oct 20221 minute to read

The SfComboBox.DropDownStyle property determines whether the editor portion of the control can be edited or not. The two different modes of editing are:

  • DropDown: Editor portion is editable.
  • DropDownList: Editor portion is non-editable.
sfComboBox1.DropDownStyle = DropDownStyle.DropDownList;
sfComboBox1.DropDownStyle = DropDownStyle.DropDownList

Editing_img1