Hi,
I have a RadDropDownList control in my WinForms window. Right now, when I click on this control for the first time since opening a window, the whole text inside RadDropDownList text box is selected. What I would like to happen is to just set cursor at the end of existing text with no text selection.
I tried handling most of the events for RadDropDownList (like GotFocus or Click) with:
private void OnGotFocus(object sender, EventArgs e) { SelectionLength = 0; SelectionStart = Text.Length; }
When I checked during debugging, the selection is properly changed by my method, but in the end the text is selected whole by something else after that.
How can I get no text selection when clicking first time into this RadDropDownList text box?
Any ideas?
Thanks
Wojtek