I have a problem setting up the back-color to transparent on a simple ultracheckeditor
The background show as white.. and would like it to show as all my ultralabels show,
I have tried a lot of things.. but nothing so far.. Any ideas ?
Try that: Create your own custom control that inherits UltraCheckEditor and add this code in your custom control class:
protected override CreateParams CreateParams
{
get
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x20; // WS_EX_TRANSPARENT
return cp;
}