Question

I am using devexpress TextEdit in c#.net application and i want to implement auto completion for TextEdit.My doubt is that for normal TextBox we set AutoCompletion mode property.But in devexpress TextEdit how we can ?

Please Help

Was it helpful?

Solution

You don't specify for what you need autocomplete, but I think you have to use MRUEdit instead of TextBox.

OTHER TIPS

In fact you can easily do it :

var tx = TextEditMoveTo.MaskBox;

AutoCompleteStringCollection customSource = new AutoCompleteStringCollection();
customSource.Add("Yes");
customSource.Add("You");
customSource.Add("Can");

tx.AutoCompleteSource = AutoCompleteSource.CustomSource;
tx.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
tx.AutoCompleteCustomSource = customSource;

And it works like a charm :)

You can read more about it here.

Credits goes to Uwe Keim

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top