Как получить контроль над активными RowDetails DataGrid - PullRequest
1 голос
/ 23 ноября 2010

У меня есть DataGrid с шаблоном RowDetailsTemplate, содержащим другую сетку.

Я хочу отреагировать на двойной щелчок по строке в этой подробной сетке и заполнить содержимое ячейки соответствующей ячейкой выбранной родительской строки.

<DataGrid Name="dataGrid1" DataContext="{Binding}" ItemsSource="{Binding Source={StaticResource ..}}" AutoGenerateColumns="False">
   <DataGrid.Columns>
     <DataGridTextColumn Header="Old Link Source" Binding="{Binding Path=OldLinkSource}"/>
     <DataGridTextColumn Header="New Link Source" Binding="{Binding Path=NewLinkSource}"/>
   </DataGrid.Columns>

   <DataGrid.RowDetailsTemplate>
     <DataTemplate>
       <DataGrid Name="dataGrid1Details" ItemsSource="{Binding Path=PossibleCandidates}" AutoGenerateColumns="False">
         <DataGrid.Columns>
           <DataGridTextColumn Header="Similarity" Binding="{Binding Path=Key}"/>
           <DataGridTextColumn Header="Possible New Link Source" Binding="{Binding Path=Value}"/>
         </DataGrid.Columns>
       </DataGrid>
     </DataTemplate>
   <DataGrid.RowDetailsTemplate>
</DataGrid>

Насколько я понимаю, дополнительная сетка воссозданакаждый раз, когда ряд меняется.Я новичок в WPF и не знаю, как получить доступ к видимой в настоящее время подробной сетке и подписаться на ее события.

1 Ответ

1 голос
/ 24 ноября 2010

Вы можете добавить стиль для DataGridRow внутри DataGrid RowDetails и подписаться на событие MouseDoubleClick оттуда.

<DataGrid.RowDetailsTemplate>
    <DataTemplate>
        <DataGrid Name="dataGrid1Details" ItemsSource="{Binding Path=PossibleCandidates}" AutoGenerateColumns="False">
            <DataGrid.Resources>
                <Style TargetType="{x:Type DataGridRow}">
                    <EventSetter Event="MouseDoubleClick" Handler="DetailedDataGridRow_MouseDoubleClick"/>
                </Style>
            </DataGrid.Resources>
            <DataGrid.Columns>
                <DataGridTextColumn Header="Similarity" Binding="{Binding Path=Key}"/>
                <DataGridTextColumn Header="Possible New Link Source" Binding="{Binding Path=Value}"/>
            </DataGrid.Columns>
        </DataGrid>
    </DataTemplate>
</DataGrid.RowDetailsTemplate>

Код позади, простой EventHandler

// Fill cell data.. You can access the values like this
void DetailedDataGridRow_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
    DataGridRow clickedDataGridRow = sender as DataGridRow;
    // Details: clickedDataGridRow.Item
    // Main DataGrid: dataGrid1.SelectedItem
}

Обновление

RowDetails и DataGridRow связаны, в некотором роде. RowDetails находится в DataGridRow в VisualTree, поэтому есть много способов получить к нему доступ (события, обход VisualTree и т. Д.), Но я не думаю, что есть свойство или что-то подобное, что даст вам прямой доступ (насколько я знаю) ). Снимок экрана из Snoop, показывающий DataGridDetailsPresenter в DataGridRow

alt text

...