需要ListView DataTemplate中的TextBox来调用LostFocus上的set或输入键。使用UpdateSourceTrigger = LostFocus和KeyUp的显式和事件。问题是我无法获得对BindingExpression的有效引用。
XAML
<ListView x:Name="lvMVitems" ItemsSource="{Binding Path=DF.DocFieldStringMVitemValues, Mode=OneWay}">
<ListView.View>
<GridView>
<GridViewColumn x:Name="gvcExistingValue">
<GridViewColumnHeader Content="Value"/>
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBox x:Name="tbExistingValue"
Text="{Binding Path=FieldItemValue, Mode=TwoWay, ValidatesOnExceptions=True, ValidatesOnDataErrors=True, NotifyOnValidationError=True, UpdateSourceTrigger=Explicit}"
Validation.Error="Validataion_Error"
LostFocus="tbExistingValue_LostFocus" KeyUp="tbExistingValue_KeyUp" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>
不工作的代码
private void tbExistingValue_LostFocus(object sender, RoutedEventArgs e)
{
BindingExpression be = lvMVitems.GetBindingExpression(ListView.SelectedItemProperty);
be.UpdateSource();
}
是null。我尝试过ListView.SelectedValueProperty和ListView.SelectedPathProperty。如果尝试使用tbExistingValue,则会失败并显示“不存在”消息,甚至无法编译。我如何获得正确的BindingExpression?感谢。
如果我设置UpdateSourceTrigger = LostFocus并删除事件处理程序,它会正确调用set。那里有一个有效的双向绑定。我只是无法使用显式获取对BindingExpression(be)的有效引用。
它直接在页面上(在网格单元格中)适用于TextBox。下面的xaml有效:
<TextBox Grid.Row="1" Grid.Column="1" x:Name="strAddRow"
Text="{Binding Path=DF.NewFieldValue, Mode=TwoWay, ValidatesOnExceptions=True, NotifyOnValidationError=True, UpdateSourceTrigger=Explicit}"
Validation.Error="Validataion_Error"
LostFocus="strAddRow_LostFocus" KeyUp="strAddRow_KeyUp"/>
这个BindingExpression工作正常:
private void strAddRow_LostFocus(object sender, RoutedEventArgs e)
{
BindingExpression be = strAddRow.GetBindingExpression(TextBox.TextProperty);
be.UpdateSource();
}
答案 0 :(得分:1)
由于您在文本框的文本DP上应用了绑定,因此您只需要从那里获取绑定 -
private void tbExistingValue_LostFocus(object sender, RoutedEventArgs e)
{
BindingExpression be = (sender as TextBox).GetBindingExpression(TextBox.TextProperty);
be.UpdateSource();
}
此外,您尚未将ListView SelectedItem与ViewModel的任何属性绑定。要检索绑定,它应至少绑定到某个值。因此,您应该将它绑定到FieldValueProperty,然后您的代码就不会获得null值。
答案 1 :(得分:-3)
您不需要使用事件LostFocus在TextBox上使用UpdateSourceTrigger。 它默认运行。