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 子元素属性


- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01