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 软件开发工具包 (SDK) 版本 10.0.14393.0) 开始,generic.xaml 包含可用于在不修改控件模板的情况下修改不同视觉状态控件颜色的资源。 在面向此软件开发工具包 (SDK) 或更高版本的应用中,修改这些资源优先于设置背景、 前台BorderBrush 等属性。 有关详细信息,请参阅 XAML 样式一文的轻量级样式部分。

适用于

另请参阅