Textbox binding update in WPF [duplicate] Textbox binding update in WPF [duplicate] wpf wpf

Textbox binding update in WPF [duplicate]


You can adjust UpdateSourceTrigger to PropertyChanged

<TextBox x:Name="messageText" Grid.Row="1" Grid.Column="0"                 TextWrapping="Wrap" Text="{Binding Path=MessageText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>