如何在Infragistics控制窗口表格中更改Countrol的背景色

时间:2019-03-07 13:15:35

标签: c# .net windows-forms-designer infragistics

我需要更改Infragistics的背景色,所以我创建了一个新的ultracheckeditor,并在尝试将Ultracheckeditor的背景色更改为面板颜色时将其添加到面板中,但是我无法更改颜色

appearance1.BackColor = System.Drawing.Color.Transparent;
appearance1.BorderColor = System.Drawing.Color.Transparent;
this.ultrabutton.Apperance=apperance1;

ImageSample

2 个答案:

答案 0 :(得分:1)

您必须使用Apperance属性并确保UseOsThemes属性为False:

ultraButton1.UseOsThemes = DefaultableBoolean.False;
ultraButton1.Appearance.BackColor = Color.Aqua;

答案 1 :(得分:0)

问题是由于通过将UseAppStyling设置为false work,容器中使用了Appstyling

this.ultrabutton.UseAppStyling =false;