无法更改按钮的整个背景颜色

时间:2018-12-10 11:35:25

标签: c# winforms button background

我无法更改按钮的整个背景颜色。我在属性中进行了更改。

有人知道如何解决此问题吗?

Klick this link to see a picture of this problem

3 个答案:

答案 0 :(得分:1)

更改突出显示的属性:

enter image description here

它将为您提供一个类似这样的按钮(我有我的红色):

enter image description here

答案 1 :(得分:0)

您应该设置属性的组合:

this.button1.BackColor = System.Drawing.Color.Red;
this.button1.FlatAppearance.BorderSize = 0;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.UseVisualStyleBackColor = false;

您会得到的:

enter image description here

答案 2 :(得分:0)

那是因为按钮的平面样式, 将FlatStyle更改为Flat

并在FlatAppearence中将BorderSize更改为0以摆脱边界

enter image description here