我正在尝试将颜色应用到这样的悬停按钮:
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;
}
我的问题似乎是某种默认的悬停效果。颜色比应该的颜色要暗很多。目前我不知道从哪里开始摆脱它。