hi;ソーステキストとターゲットテキストボックスがあります。txttargetにはtxtsourceへのバインディングがあります。 txtsourceに何かを書くとき、txttargetが変更されます。しかし、txttargetに書いてみると、txttargetの変更は見られませんか? TwoWayモードがあります。 Twowayモードでは不十分ですか?私は "UpdateSourceTrigger = PropertyChanged"を使わずに書くことができますか?なぜ私はUpdateSourceTrigger = PropertyChangedを使用していますか、TwoWayで十分ではありませんか?
<Grid>
<TextBox Height="23" HorizontalAlignment="Left" Margin="155,62,0,0" Name="txtSource" VerticalAlignment="Top" Width="120" />
<TextBox Height="23" HorizontalAlignment="Left"
Text="{Binding ElementName=txtSource,Path=Text,Mode=TwoWay}"
Margin="155,113,0,0" Name="txtTarget" VerticalAlignment="Top" Width="120" />
</Grid>