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?
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; }
private void Form1_Load(object sender, EventArgs e) {
DropDownManager.DropDownResizeHandleDefaultStyle= DropDownResizeHandleStyle.DiagonalResize;
}
Thanks
Vaibhav
Ahhh :) Very well implemented and easy to control. Thank you good sir!