是否可以为AttachedEvent
创建ItemsControl
,当ItemsSource
或Items
发生更改时会触发该内容?
将会像这样使用的东西:
<ItemsControl ItemsSource="{Binding ItemList}"
ext:ItemsControlHelper.ItemsChanged="OnItemsChanged">
...
</ItemsControl>
我认为应该可以使用DependencyPropertyDescriptor
执行此操作,但我无法用AttachedEvent
包围确切的实现。