WPF DataGridRow事件 - “选定”事件继承

时间:2013-04-02 06:57:26

标签: .net wpf xaml events datagrid

我的程序中有这段代码:

        <DataGrid.ItemContainerStyle>
            <Style TargetType="DataGridRow">
                <EventSetter Event="Selected" Handler="Selection_event"/>
            </Style>
        </DataGrid.ItemContainerStyle>

我无法找到继承Selected事件的位置。

DataGridRow Events

UIElement Events

我正在寻找Unselected之类的内容,并希望了解Selected附近有什么事件

1 个答案:

答案 0 :(得分:3)

我无法找到继承选定事件的位置。

Selected的{​​{1}}属性为Event时,会出现IsSelected DataGridRow。见here

我正在寻找像Unselected这样的东西,想看看附近有什么事件

有关DataGridRow事件的完整列表,请参阅here。您要查找的是true event,这是在清除行选择时发生的。