I have a RichTextBox
which I need to use as a Label for RichTextBox
's have background selection which I need for my Windows Forms Application.
I have encountered a problem when disabling the RichTextBox
, it has made the BackColor
of the RichTextBox
to a whitish/Grayish.
I have tried using the following code:
ll.ForeColor = Color.LightGreen;
ll.Location = new Point(1, Form1.ActiveForm.Size.Height / 23 * 23);
ll.AutoSize = true;
ll.SelectionColor = Color.FromArgb(0, 0, 0);
ll.BorderStyle = BorderStyle.None;
ll.BackColor = Color.FromArgb(0, 0, 0);
ll.Multiline = false;
ll.ReadOnly = true;
ll.Enabled = false;
ll.SelectionBackColor = Color.Transparent;
ll.SelectAll();
ll.Font = new Font("ModeSeven", 12);
But still I get this... https://i.stack.imgur.com/zIGHv.png
i've just used the
readOnly
and not set theEnabled
property as well property and got this:which is exactly what you want i think.
here is the full code
if you want it to also not be selectable you can do:
and in the handler: