gpt4 book ai didi

wpf - 如何绑定(bind)到 ControlTemplate 中的元素?

转载 作者:行者123 更新时间:2023-12-04 08:50:39 45 4
gpt4 key购买 nike

我在 wpf 中创建了两个自定义控件,Control_AControl_B .他们都定义了 ColorProperty . Control_AControlTemplateControl_B 组成实例,

<ControlTemplate 
TargetType="{x:Type Control_A}">
<Border
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">

<Control_B />

</Border>
</ControlTemplate>
我想要的是绑定(bind) A.Color (目标)到 B.Color (来源)。这如何在 XAML 中实现?

最佳答案

可以通过 TwoWay 来完成捆绑。这种方式有它的缺点,但它的工作原理,

<ControlTemplate 
TargetType="{x:Type Control_A}">
<Border
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">

<Control_B
Color="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Color,
Mode=TwoWay}"/>

</Border>
</ControlTemplate>

关于wpf - 如何绑定(bind)到 ControlTemplate 中的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64116550/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com