سؤال

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

هل كانت مفيدة؟

المحلول

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

نصائح أخرى

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

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top