2

LostFocus または Enter キーでセットを呼び出すには、ListView DataTemplate に TextBox が必要です。UpdateSourceTrigger = Explicit と、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();
    } 

はヌルです。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();
    }
4

2 に答える 2

2

テキストボックスのテキストDPにバインディングを適用するので、このようにのみそこからバインディングをフェッチする必要があります-

private void tbExistingValue_LostFocus(object sender, RoutedEventArgs e)
{
   BindingExpression be = (sender as TextBox).GetBindingExpression(TextBox.TextProperty);
   be.UpdateSource();
}

さらに、ListViewSelectedItemをViewModelのプロパティにバインドしていません。バインディングを取得するには、少なくとも何らかの値にバインドする必要があります。したがって、それをFieldValuePropertyにバインドする必要があります。そうしないと、コードが配置された状態でnull値を取得できなくなります。

于 2011-10-16T14:28:54.700 に答える
-3

イベント LostFocus を使用して、TextBox で UpdateSourceTrigger を使用する必要はありません。それはデフォルトで機能しています。

ここで答えてください: https://msdn.microsoft.com/en-gb/library/system.windows.data.binding.updatesourcetrigger(v=vs.110).aspx

于 2015-11-19T11:41:25.813 に答える