You can set the AutoCompleteMode property to the element of the PropertyGridDropDownListEditor. You can do this by subscribing to the EditorInitialized event:
privatevoidRadPropertyGrid1_EditorInitialized(object sender, PropertyGridItemEditorInitializedEventArgs e)
{
if (e.Editor is PropertyGridDropDownListEditor)
{
PropertyGridDropDownListEditor editor = e.Editor as PropertyGridDropDownListEditor;
BaseDropDownListEditorElement element = editor.EditorElement as BaseDropDownListEditorElement;
element.DropDownStyle = RadDropDownStyle.DropDown;
element.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
}
}
I hope this helps. Should you have any other questions, I will be glad to help.
Regards,
Nadya
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.