0

我已经使用 Devexpress SimpleButton 完成了一个自定义按钮,我想像这样更改按钮的颜色,但它不起作用。

        this.Button.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
        this.Button.BackColor = Color.Pink;

我对设计器做了同样的事情,它工作正常,但现在我想以编程方式做它,它不工作。提前致谢。

4

1 回答 1

5

确保设置LookAndFeel.Style为 Flat、Ultra Flat 或 Style3D:

this.Button.LookAndFeel.Style = LookAndFeelStyle.Flat;
this.Button.LookAndFeel.UseDefaultLookAndFeel = false;
this.Button.Appearance.BackColor = Color.MediumSeaGreen;
this.Button.Appearance.Options.UseBackColor = true;
于 2016-11-20T14:33:23.000 回答