gpt4 book ai didi

wpf - 使用TemplateBinding更新源

转载 作者:行者123 更新时间:2023-12-04 04:49:35 24 4
gpt4 key购买 nike

我在所有标签上都使用了这种样式

    <Style TargetType="Label" x:Key="LabelStyle">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Label">
<StackPanel Orientation="Horizontal" >
<TextBox Loaded="MyTextBlock_Loaded" x:Name="EditControl" Visibility="Collapsed" Text="{TemplateBinding Tag}" />
<Label Content="{TemplateBinding Content}" Grid.Column="1" Grid.Row="1">
</Label>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

和我的 sample 标签
<Label Grid.Column="0" Grid.Row="0" Content="Photo" Style="{StaticResource LabelStyle}" Tag="{Binding fieldsCode.firstName, UpdateSourceTrigger=PropertyChanged}"/>

但是我觉得TemplateBiding不支持属性更新。如何解决这个问题

最佳答案

尝试这种方式进行双向装订

Text="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Tag, Mode=TwoWay}"

关于wpf - 使用TemplateBinding更新源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2818020/

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