|
|
How to use the combobox Autocomplete
Demonstrates how to use AutoCompleteMode property of ComboBox. AutoCompleteMode property gets or sets an option that controls how automatic completion works for the ComboBox. The ComboBox has the following modes: None - disables the automatic completion feature for the ComboBox and TextBox controls; Suggest - displays the auxiliary drop-down list associated with the edit control. This drop-down is populated with one or more suggested completion strings; Append - appends the remainder of the most likely candidate string to the existing characters, highlighting the appended characters; SuggestAppend - applies both Suggest and Append options. You can select different AutoComplete mode in 'AutoCompleteMode' ComboBox and when you will try to begin enter value in 'AutoCompleted ComboBox' ComboBox. You will see different behavior of demonstrated the ComboBox.
|