wpf - custom - Establecer ItemsPanel de un DataGridCellsPresenter vía Style no funciona
datagridtemplatecolumn style (0)
Estoy tratando de configurar el ItemsPanel
de un DataGridCellsPresenter
en los recursos de mi ventana.
<Style TargetType="{x:Type DataGridCellsPresenter}">
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<WPFVarTab:CustomDataGridCellsPanel IsItemsHost="True" />
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
</Style>
Pero mi CustomDataGridCellsPanel
no se usa. Todavía usa el DataGridCellsPanel
.
¿Qué estoy haciendo mal?