ComboBox.AutoCompleteSource

0
0

This property does not seem to be available within WiseJ

Is there some special way to hydrating the ComboBox for implementing  the available AutoCompleteMode ?

DataSource property,  manual ComboBox.Add(Item) or AddRange for the Objects ?

 

Thank you

  • You must to post comments
1
0

You can see an example of the Combobox in AutoCompleteMode in the demobrowser here:
https://wisej-demobrowser.azurewebsites.net/#Editors/ComboBox/Auto%20Complete (In the demobrowser menu on the left, expand “ComboBox” and then choose “Auto Complete”)

The source code for the Combobox in the demobrowser is here: https://github.com/iceteagroup/wisej-demobrowser/tree/main/Demos/Editors/Wisej.DemoBrowser.ComboBox Specifically, look at the files AutoComplete.cs and AutoComplete.Designer.cs

In the demobrowser example, this is how items are added to the combobox:
this.comboBox1.Items.AddRange(new object[] {
"Aberdeen",
"Abilene",
"Columbus"});

-Julie

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.