You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
DataGrid is not considered an ItemControl or Selector, despite having all the properties.
Describe the solution
DataGrid shares all functionality with ListViewBase, so giving it a more specific base type will allow abstraction for developers with their lists when using DataGrid.
Describe alternatives you've considered
I'm implementing the DataGrid in a Style that assumes PART_selector is a Selector. I would like to use a DataGrid as my Selector, but DataGrid doesn't implement Selector.
Additional context & Screenshots
All the properties are already there. It's as easy as changing the base type.
Describe the problem this feature would solve
DataGridis not considered anItemControlorSelector, despite having all the properties.Describe the solution
DataGridshares all functionality withListViewBase, so giving it a more specific base type will allow abstraction for developers with their lists when usingDataGrid.Describe alternatives you've considered
I'm implementing the
DataGridin a Style that assumesPART_selectoris aSelector. I would like to use aDataGridas mySelector, butDataGriddoesn't implementSelector.Additional context & Screenshots
All the properties are already there. It's as easy as changing the base type.