删除按钮的默认悬停效果

时间:2014-09-15 12:45:57

标签: c# winforms button hover

我正在尝试将颜色应用到这样的悬停按钮:

private void button_MouseEnter(object sender, EventArgs e)
{
    button.UseVisualStyleBackColor = false;
    button.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
}

private void button_MouseLeave(object sender, EventArgs e)
{
    button.UseVisualStyleBackColor = true;
    button.BackColor = System.Drawing.SystemColors.ControlLight;
}

我的问题似乎是某种默认的悬停效果。颜色比应该的颜色要暗很多。目前我不知道从哪里开始摆脱它。

0 个答案:

没有答案