在ResourceDictionary中定义样式,但在本地EventSetter

时间:2018-04-12 14:37:00

标签: wpf datagrid styling

我重新设计了一个DataGrid,它变得相当复杂,所以我将样式(DataGrid,DataGridCell,DataGridRow,...)移动到ResourceDictionary。我给了他们所有人一个x:Key并引用了他们,例如as DataGrid.RowStyle =“{StaticResource SuperRowStyle}”。现在我想在Row上使用EventSetter,但显然我不能在ResourceDictionary中设置它,但是我也不能在Window中设置它,因为它被RowStyle属性覆盖。我怎样才能做到这一点? BR, 丹尼尔

2 个答案:

答案 0 :(得分:1)

我自己回答,因为评论中提供了一个很好的解决方案。我在窗口中创建了一个样式,我需要EventSetter并使用带有所需样式的BasedOn。

答案 1 :(得分:0)

  

现在我想在行上使用EventSetter,但显然我无法在ResourceDictionary中设置它。

是的,您可以将代码隐藏文件添加到ResourceDictionary

Is it possible to set code behind a resource dictionary in WPF for event handling?

必须在与EventSetter相同的类中定义处理程序。