1

我用 WPF 4.0 和一个数据网格在 c# 中创建了一个小应用程序。我的数据网格绑定到一个对象。

我想在输入一行后进行一些测试,所以我使用 RowEditEnding 事件。

这是我的代码

private void dataGrid1_RowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
{
    TableCompte Compte = e.Row.DataContext as TableCompte;

    if (Compte  != null)
    {
       // Verifs
    }
}

我的问题是我的对象为空。

我的错误在哪里?

这是我的 XAML 声明:

<DataGrid AutoGenerateColumns="false" Name="dataGrid1" AreRowDetailsFrozen="false" Margin="31,227,28,82" RowEditEnding="dataGrid1_RowEditEnding">
    <DataGrid.Columns>
        <DataGridTextColumn Width="134" Header="Compte d'origine" Binding="{Binding Path=m_CompteOrigine, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
        <DataGridTextColumn Width="134" Header="Compte Taux 1" Binding="{Binding Path=m_CompteTaux1, Mode=TwoWay ,UpdateSourceTrigger=PropertyChanged}"  />
        <DataGridTextColumn Width="134" Header="Taux 1" Binding="{Binding Path=m_Taux1, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged }"  />
        <DataGridTextColumn Width="134" Header="Compte Taux 2" Binding="{Binding Path=m_CompteTaux2, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" />
        <DataGridTextColumn Width="134" Header="Taux 2" Binding="{Binding Path=m_Taux2, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged }"  />
        <DataGridTextColumn Width="134" Header="Compte Taux 3" Binding="{Binding Path=m_CompteTaux3, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" />
        <DataGridTextColumn Width="134" Header="Taux 3" Binding="{Binding Path=m_Taux3, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged }"  />
    </DataGrid.Columns>
</DataGrid>
4

1 回答 1

0

这里的问题是DataContext只有在 item 是从生成时才会设置ItemsSource(应该在ItemsSource上绑定DataGrid)。
而不是e.Row.DataContext使用e.Row.Item,这将解决您的问题。


更新

看起来问题出在演员阵容中。

TableCompte Compte = e.Row.DataContext as TableCompte;

您应该知道要绑定到的类型DataGrid。如果你要绑定ObservableCollection<YourClass> FooObservableItemsSource那么YourClass应该有 m_CompteTaux1、m_CompteTaux2、m_CompteTaux3、m_CompteTaux4 等。然后铸造:

var rowDataItem = e.Row.DataContext as YourClass;
于 2012-09-02T20:43:32.607 回答