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 子元素属性
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- SSE 浮点算术是否可重现? 2022-01-01