0
バインディングプロパティUpdateSourceTrigger
をStyle
に設定する方法を探しています。私が何をしたいかXAMLのスタイルでバインディングプロパティを設定するC#
<TextBox Text="{Binding boundValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
は、このようなものである(しかし、これは明らかに動作しません):現在、私はこのような手動ですべてのTextBox
でそれを設定してい
<Window.Resources>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Binding.UpdateSourceTrigger" Value="PropertyChanged" />
</Style>
</Window.Resources>
<Grid>
<TextBox Text="{Binding boundValue, Mode=TwoWay}"/>
</Grid>
これはとてもうまく動作します。ありがとうございました! –
ようこそ@RomanoZumbé –