Control.Background 属性

定义

获取或设置提供控件背景的画笔。

public:
 property Brush ^ Background { Brush ^ get(); void set(Brush ^ value); };
Brush Background();

void Background(Brush value);
public Brush Background { get; set; }
var brush = control.background;
control.background = brush;
Public Property Background As Brush
<control Background="{StaticResource resourceName}"/>
- or -
<control Background="colorString"/>
- or -
<control>
  <control.Background>singleBrush</control.Background>
</control>

属性值

提供控件背景的画笔。 默认值为 null, (一个 null 画笔) 该画笔的计算结果为 透明 呈现。

注解

每个控件可能基于其可视模板以不同的方式应用此属性。 此属性仅影响模板使用 Background 属性作为模板 UI 属性的输入的控件。 在其他控件上,此属性不起作用。 通常,控件使用 {TemplateBinding} 标记扩展 将其 Background 值绑定到作为控件模板的根 元素的Panel 的背景;例如,将 更改为 Grid.Background。 有关可视模板和控件模板化的详细信息,请参阅 设置控件样式Template 属性的参考页。

从 Windows 10 版本 1607 (Windows 软件开发工具包 (Windows SDK) (SDK) 版本 10.0.14393.0) 开始,generic.xaml 包含可用于在不修改控件模板的情况下修改不同视觉状态中的控件颜色的资源。 在面向此软件开发工具包 (SDK) 或更高版本的应用中,修改这些资源优先于设置 Background、 ForegroundBorderBrush 等属性。 有关详细信息,请参阅 设置控件样式 一文的轻量 级样式 部分。

适用于

另请参阅