WPF - 获取DataGridTemplateColumn中Combobox控件的行索引

时间:2015-01-10 11:45:04

标签: c# wpf datagrid combobox

我想知道如何做到这一点。 我有一个DataGridTemplateColumn,里面有一个简单的ComboBox控件。 组合框中有一个SelectionChanged事件。

在更改的事件中,我想知道更改行的行索引是从更改的组合框中派生出来的。

我采取了错误的做法吗? 这就是我所拥有的:

<DataGrid AutoGenerateColumns="False" Margin="5,10,5,5"
            x:Name="dgrMatches" ItemsSource="{Binding .}"
            CanUserAddRows="False" CanUserDeleteRows="False" CanUserReorderColumns="False" CanUserSortColumns="False"
            SelectionMode="Single" SelectionUnit="FullRow" IsReadOnly="False"
            RowStyle="{DynamicResource EditableRows}" CellStyle="{DynamicResource EditableTableCells}">
        <DataGrid.Columns>
            <DataGridTextColumn ... />

            <DataGridTemplateColumn Header="Legs won" Width="Auto">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <ComboBox Name="cbbLegsWonA"
                                SelectedIndex="{Binding LegsWonA, Mode=TwoWay}"
                                ItemsSource="{Binding NumberOfLegs}"
                                SelectionChanged="cbbLegsWonA_SelectionChanged" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>

            <!-- @Chris Eelmaa -->
            <DataGridTemplateColumn Header="Legs won" Width="Auto">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <ComboBox Name="cbbLegsWonB"
                                SelectedIndex="{Binding LegsWonB, Mode=TwoWay}"
                                ItemsSource="{Binding NumberOfLegs}"
                                SelectionChanged="cbbLegsWonB_SelectionChanged" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>

            <DataGridTextColumn ... />
        </DataGrid.Columns>
    </DataGrid>

事件处理程序:

private void cbbLegsWonA_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    ComboBox cbbLegsA = e.Source as ComboBox; // Altered combobox
    int rowIndex = -1;

    if (cbbLegsA.Tag == null)
    {
        DataGridRow row = (DataGridRow)dgrMatches.ContainerFromElement(cbbLegsA);
        rowIndex = row.GetIndex();
        cbbLegsA.Tag = rowIndex;
    }
    else
    {
        Int32.TryParse(cbbLegsA.Tag.ToString(), out rowIndex);
    }

//@ChrisEelmaa: Basically, change the bound list and refresh the items in the datagrid
//The debugger doesn't get to this point, ofcourse
SingleMatch match = matches.ElementAt(rowIndex); // Get the current match out of the bound list
match.LegsWonA = cbbLegsA.SelectedIndex; // Manually change second combobox item
dgrMatches.Items.Refresh();

...
}

这不起作用:(DataGridRow)dgrMatches.ContainerFromElement(cbbLegsA) == null

1 个答案:

答案 0 :(得分:1)

(DataGridRow)dgrMatches.ContainerFromElement(cbbLegsA) == null无法正常工作,因为DataGrid的特定行的ItemContainer不是DataTemplate中的ComboBox,它是一个DataGridRow,其中包含一个模板& #39;您的ComboBox的版本。相反,您需要使用VisualTreeHelper。FindParent()从ComboBox中查找DataGridRow(因为您的ComboBox位于DataGridRow的可视树中,但不是逻辑树)。您可以从DataGridRow引用轻松找到行索引。然而...

评论中建议的更好的方法是使用MVVM模式。您的ComboBox将绑定到ViewModel中的属性。当ViewModel中的一个属性发生更改时,您可以轻松更新另一个属性以实现您想要的行为,而无需通过可视树进行任何丑陋的搜索,或者拥有一堆UI代码。而不是一个ComboBox的逻辑自动更新您的UI中的另一个,它在一个更容易控制的视图对象模型(又名&#39; ViewModel&#39;)应该在哪里。