Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1180
Textbox with a DropDownEditorButton
posted

I have a Textbox with a DropDownEditorButton that is related to a ultraTree.


I need to make the ultraTree appear once it receives the focus, as if I had clicked on DropDownEditorButton

Parents
No Data
Reply
  • 469350
    Offline posted

    You can call the DropDown method on the DropDownEditorButton to drop it down programmatically.

    DropDownEditorButton ddeb = (DropDownEditorButton)this.ultraTextEditor1.ButtonsRight[0];
    ddeb.DropDown();

Children