I want to do textBox a Transparent Background c# .net Visual Studio is making a mistake if you define Properties
input[type=text] { background: transparent; border: none; } background-color:rgba(0,0,0,0);
Put this in the constructor:
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
The class need to enable the transparent style. (For some reason it isn't supported by default).
public class MyControl : System.Windows.Forms.UserControl
{
        public MyControl ()
        {
            // Create visual controls
            InitializeComponent();
            SetStyle(ControlStyles.SupportsTransparentBackColor, true);
        }
}
Or if it's not a custom control:
mycontrolObject.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
More about Control.SetStyle Method
Other Control Styles
I've found a workaround for this problem, which I have on my own.
Most of what I've read over here is true. And the approaches "à la" AlphaBlendTextBox are way too complex or too time-consuming for some environments, already heavily charged.
Assume you have a given background color and a given picture or whatever you want to see through the RichTextBox control. This is what I've done (summarized):
TransparencyKey to SystemColors.InactiveBorder
FormBorderStyle to FormBorderStyle.None; ControlBox,MinimizeBox, MaximizeBox and ShowIcon to false, TopMost to true, StartPosition to FormStartPosition.Manual, SizeGripStyle to SizeGripStyle.Hide), so there's no visible form structuresRichTextBox with the same size of the form and located on its upper, left cornerBackColor to SystemColors.InactiveBorder (remember the TransparencyKey?)
and its BorderStyle to None as wellI can't pretend this approach fits everybody, but it is way simpler than others I've seen and, as long as I can keep it that way, I do prefer the simpler solutions.
Of course, when you close the main form, you must take care of the child form, but this is pretty basic for you, isn't it?
Enjoy!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With