Pergunta

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

Foi útil?

Solução

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

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top