With style to Standard and NodeStyle to checkbox, is there a way to disable the checkbox and still be able to expand the node? I tried disabling the node but that won't allow me to expand the node.
I just want to disable the checbox but still be able to expand the node.
Hello GoDaddy,
You could try hooking to the 'BeforeCheck' event of the 'WinTree' control and cancel it:
private void ultraTree1_BeforeCheck(object sender, BeforeCheckEventArgs e) { e.Cancel = true; }
Please feel free to let me know if I misunderstood you or if you have any other questions.