EDIT:
I have managed a workaround. Now on MouseEnter, I set the focus to the button, and I change the MouseOverBackColor to the button's current BackColor; I also have an event handler (in the parent container of the button) for GotFocus that changes the BackColor accordingly. I have NO idea why this works this way but I have only gotten it to work in this particular combination. Again, I am looking for better ways to do it so keep it up with the answers.
I made a Button override and the Text property now overrides to a custom child Label. The problem is I have styles applied to the button (color changing on focus/mouse enter).
I would like the Label to change it's color accordingly and I have achieved this in two ways so far:
- Set the label's
BackColortoTransparent - Override the
OnMouseEnterandOnMouseLeaveto also change the Label'sBackColoraccordingly.
They both work; the only problem is there is a slight delay when changing the BackColor of the Label; this result to a little tearing in graphics when the Button's BackColor changes.
This isn't such a big deal but it is a little annoying; would appreciate any useful advice you would bestow upon me.
BackColorto anything else in between. – Cody Gray Feb 22 '11 at 8:52Labelcontrol on top of aButtoncontrol. If so, why in the world are you doing this? You can just change theBackColorproperty of theButtonand achieve the same effect. – Cody Gray Feb 22 '11 at 8:53MouseEnterBackColorandMouseDownBackColor(which are independent fromBackColor) and they need to be set dynamically to inherit the parents'Backcolor, which can also change (focused or not) and when that scenario occurs (MouseOver, then changeMouseEnterBackColorto parent'sBackColor, that is when the chopiness of the label'sBackColoroccurs) – rotSin Feb 22 '11 at 9:21