假设我有一个带有多个子控件的UserControl
<UserControl x:Class="Any.AnyControl"
<Grid>
<Label Name="label1" Background="Black" />
... more controls here
</Grid>
</UserControl>
我在MainWindow中使用它是这样的:
<Window>
<Grid>
<local:AnyControl/>
// I want to access AnyControl label1 Background property here
</Grid>
</Window>
我知道如何在代码隐藏中访问AnyControl label1 Background属性,但是有什么方法可以在父XAML中访问它吗?
我的代码现在: 在父XAML中
<local:AlertControl LabelBackground="Blue">
用户控件中的
<Label Background="{Binding LabelBackground, RelativeSource={RelativeSource AncestorType=UserControl}}" />
也试试这个
<Label Background="{Binding LabelBackground, RelativeSource={RelativeSource AncestorType=local:AlertControl}}" />
答案 0 :(得分:0)
尝试这样(虽然它不是在父控件中设置控件样式的最佳做法):
<local:AnyControl>
<local:AnyControl.Resources>
<Style TargetType="{x:Type Label}">
<Setter Property="Background" Value="Red" />
</Style>
</local:AnyControl.Resources>
</local:AnyControl>
它为UserControl中的给定类型的所有控件设置background属性。如果您想为名称选择的控件更改它,您可以执行类似的操作(将Value="Test"
更改为您的控件的名称):
<local:AnyControl>
<local:AnyControl.Resources>
<Style TargetType="{x:Type Label}">
<Style.Triggers>
<Trigger Property="Name" Value="Test">
<Setter Property="Background" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
</local:AnyControl.Resources>
</local:AnyControl>