Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change WinForms button highlight color

I found this page, which outlines how to change the rendering for a MenuStrip and its items.

I want to use this, but the problem is that the highlight color when you hover over a button doesn't match it.

Is there any way to change the highlight color from blue to yellow? I've tried using the MouseHover and MouseLeave events, but for some reason they're really slow, and they change the button to a solid color, which looks bad, but leaves a border on the edge of the button that doesn't change.

In the designer:

this.ButtonName.MouseHover += new System.EventHandler(button_mousehover);

And then in the Code:

private void button_mousehover(object sender, EventArgs e)
{
    Button btn = sender as Button;
    btn.BackColor = Color.Yellow;
}

Is there anything as easy as in the link I posted above to change the highlight color from blue to something else?

Here's the code for changing the rendering of the menu strip:

private void myForm Load(object sender, EventArgs e)
{
    myMenuStrip.Renderer = new MenuRenderer();
{

private class MenuRenderer : ToolStripProfessionalRenderer
{
    public MenuRenderer() : base(new MyColors()) { }
}

private class MyColors : ProfessionalColorTable
{
    public override Color MenuItemSelectedGradientBegin
    {
        get { return Color.Orange; }
    }
    public override Color MenuItemSelectedGradientEnd
    {
        get { return Color.Yellow; }
    }
    public override Color MenuItemPressedGradientBegin
    {
        get{ return Color.Yellow; }
    }
    public override Color MenuItemPressedGradientEnd
    {
        get { return Color.Orange; }
    }
    public override Color MenuItemSelected
    {
        get { return Color.Gold; }
    }
}

So it'll change the background of a hovered-over menu item to an orange-yellow gradient, change it to a yellow-orange gradient on click, and any item in the menu will have a gold highlight on hovering.

What I'm trying to do is do that last part (change the highlight to gold/yellow) for the buttons in my form.

like image 488
electroball09 Avatar asked Jan 07 '15 19:01

electroball09


1 Answers

In the properties of the button:

under FlatStyle, select Flat.

Then, expand FlatAppearance and under MouseOverBackColor, select the highlight color you want. Alternatively, you can also enter the RGB color you want, under the MouseOverBackColor.

like image 111
Chuque Avatar answered Sep 28 '22 10:09

Chuque