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
1405
Possilbe to set certain properties of controls while AppStyling?
posted

For example, I'd like to set the UltraComboEditor's DropDownResizeHandleStyle property to a consistent global value. Is there a method of doing this that I may have missed?

Parents
  • 370
    Verified Answer
    posted

    Hi,

    There is no way to do this using Appstylist since it affects functionality and not just style. You may do this in code by setting the static property called DropDownResizeHandleDefaultStyle.  This property is available through DropDownManager class.

    You may use the following code to do the same:

    private void Form1_Load(object sender, EventArgs e)     {

    DropDownManager.DropDownResizeHandleDefaultStyle= DropDownResizeHandleStyle.DiagonalResize;

        }

    Thanks

    Vaibhav

Reply Children
No Data