Accessing WPF UserControl child element property(访问 WPF UserControl 子元素属性)
问题描述
假设我有一个带有多个子控件的 UserControl
Let's say I have a UserControl with several child controls
<UserControl x:Class="Any.AnyControl"
<Grid>
<Label Name="label1" Background="Black" />
... more controls here
</Grid>
</UserControl>
我在 MainWindow 中这样使用它:
and I use it in MainWindow like so:
<Window>
<Grid>
<local:AnyControl/>
// I want to access AnyControl label1 Background property here
</Grid>
</Window>
我知道如何在代码隐藏中访问 AnyControl label1 背景属性,但有什么方法可以在父 XAML 中访问它吗?
I know how I can access AnyControl label1 Background property in code-behind, but is there any way I can access it in parent XAML?
我现在的代码:在父 XAML 中
my code now: in parent XAML
<local:AlertControl LabelBackground="Blue">
在用户控件中
<Label Background="{Binding LabelBackground, RelativeSource={RelativeSource AncestorType=UserControl}}" />
也试试这个
<Label Background="{Binding LabelBackground, RelativeSource={RelativeSource AncestorType=local:AlertControl}}" />
推荐答案
尝试这样(尽管在其父控件中设置控件样式不是最佳做法):
Try like this (although it's not the best practice to style controls in their parent control):
<local:AnyControl>
<local:AnyControl.Resources>
<Style TargetType="{x:Type Label}">
<Setter Property="Background" Value="Red" />
</Style>
</local:AnyControl.Resources>
</local:AnyControl>
它为 UserControl 中给定类型的所有控件设置背景属性.如果您想为按名称选择的控件更改它,您可以执行类似的操作(将 Value="Test" 更改为您的控件名称):
It sets the background property for all controls of a given type inside your UserControl. If you want to change it for a control selected by a name, you can do something like that (change Value="Test" to your control's name):
<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>
这篇关于访问 WPF UserControl 子元素属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:访问 WPF UserControl 子元素属性
基础教程推荐
- C# 从 List<List<int>> 中删除重 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
