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
1330
Issue with transparency on UltraTextEditor
posted

Hi there, i'm trying to make the ultraTextEditor transparent.

I have managed to achieve this with:

appearance1.BackColor = System.Drawing.Color.Transparent;

appearance1.BackColor2 = System.Drawing.Color.Transparent;

 this.uteStatus.Appearance = appearance1;

 

However, when I click on the text box or I select text on the textbox the control is no longer transparent.  Does anyone know how to remedy this situation?

Parents
No Data
Reply
  • 469350
    Offline posted

    You might want to consider replacing your UltraTextEditor with an UltraFormattedTextEditor, which does not use the MS TextBox and therefore does not have the same limitation.

Children