我有两个文本框。这些值是从属性绑定的:
<TextBlock Text="Input 1" Margin="3,3,3,3" FontWeight="Normal" Foreground="#FFF4E7CA"/>
<TextBox Text="{Binding Processing.Input1}" Margin="3,3,6,3" FontWeight="Normal"/>
<TextBlock Text="Input 2" Margin="3,3,3,3" FontWeight="Normal" Foreground="#FFF4E7CA"/>
<TextBox Text="{Binding Processing.Input2}" Margin="3,3,6,3" FontWeight="Normal"/>
更改第一个文本框中的值后,我按下“保存”按钮。Textbox1 的值不会在保存的结果上更新。仅当我在编辑到文本框 2 后将鼠标焦点从文本框 1 移动时,结果才会更新。如何立即将文本框更新为属性?