我的 Windows 窗体应用程序中有多个按钮,我想像这样应用一些btnhover
样式
private void button1_MouseEnter(object sender, EventArgs e) {
button1.UseVisualStyleBackColor = false;
button1.BackColor = Color.GhostWhite;
}
private void button1_MouseLeave(object sender, EventArgs e) {
button1.UseVisualStyleBackColor = true;
}
我想把这种风格放在一个地方,我希望它自动应用于我表单中的所有按钮。我该怎么做,请帮助我并提前感谢