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
1060
Setting Transparency on UltracheckEditor
posted

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 ?

  • 17259
    Offline posted

    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;

    }

    }