I would like to change the colour of the label box - not just the text within the label. How would i do this?
label.BackColor = Color.Coral;
(for instance) will change the colour of the text within the label.. rather than the background colour of the entire label box.
Also, if it matters, i'm using a toolStripContainer and ToolStrip. I used ToolStrip to create a label.... (i've used ForeColor in my code because using "BackColor" results in no change what so ever. Using ForeColor at least changes the colour of the font)
private void labelEdit_MouseHover(object sender, EventArgs e)
{
labelEdit.ForeColor = Color.Coral;
}