为什么我收到此错误消息?我正在使用事件设定器!
<Style TargetType="{x:Type xcdg:DataCell}">
<EventSetter Event="LostFocus" Handler="cellLostFocusHandler" />
</Style>
修改
我没有使用内联样式。它属于资源,即:
<DataGrid.Resources>
<Style TargetType="{x:Type xcdg:DataCell}">
<EventSetter Event="LostFocus" Handler="cellLostFocusHandler" />
</Style>
</DataGrid.Resources>