Table of Contents
IsReadOnly Property

Gets or sets a value indicating whether the TextBox control inside the selection box is read-only.

Syntax
 public Boolean IsReadOnly { get; set; }
Remarks

When IsEditable is set to true, the ComboBox creates a TextBox in the selection box. By default, user can enter text directly in the textbox. However if IsReadOnly is set to true, user can no longer do so. User will still be able to select an item from the drop down, and once an item appears in the selection box, user will be able to select and copy item text.

See Also