Panel.Background 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public:
property System::Windows::Media::Brush ^ Background { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush Background { get; set; }
member this.Background : System.Windows.Media.Brush with get, set
Public Property Background As Brush
属性值
Brush。 此默认值为 null
。
示例
以下示例将 的 Grid 设置为 BackgroundRadialGradientBrush。
<Grid>
<Grid.Background>
<RadialGradientBrush
GradientOrigin="0.5,0.5"
Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5">
<RadialGradientBrush.GradientStops>
<GradientStop Color="Yellow" Offset="0" />
<GradientStop Color="Red" Offset="0.25" />
<GradientStop Color="Blue" Offset="0.75" />
<GradientStop Color="Green" Offset="1" />
</RadialGradientBrush.GradientStops>
</RadialGradientBrush>
</Grid.Background>
</Grid>
注解
Panel 如果未定义 , Background 则元素不会接收鼠标或触笔事件。 如果需要处理鼠标或触笔事件,但不希望使用 Panel背景,请使用 Transparent。
依赖项属性信息
标识符字段 | BackgroundProperty |
元数据属性设置为 true |
AffectsRender, SubPropertiesDoNotAffectRender |