我有一个具有 UpdateSourceTrigger = LostFocus 的文本框。
当我在文本框中输入内容并立即单击按钮时,按钮单击事件不会触发。我认为文本框只是失去了对按钮的关注。当我再次单击按钮时,它会触发单击事件。
如何克服这个问题?
这是我的 XAML 代码:
<TextBox x:Name="ApText"
Width="135"
Margin="0,4,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Text="{Binding Value, Mode=TwoWay, NotifyOnValidationError=True, UpdateSourceTrigger=LostFocus, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}"
TextWrapping="Wrap"
Validation.ErrorTemplate="{DynamicResource UI.ErrorTemplateStyle}" />
<Button
Width="100"
MinWidth="60"
MinHeight="40"
Margin="0,8,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Command="{Binding SaveCommand}"
Content="Save" />