本文介绍了WPF绑定到EntitySet?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

EntitySet是一个未实现INotifyCollectionChanged的密封类。在绑定到对象中包含的EntitySet时,是否有一种简单的方法可以向WPF添加/删除通知?

EntitySet is a sealed class that doesn't implement INotifyCollectionChanged.  Is there an easy way to get add/remove notifications to WPF when binding to an EntitySet contained inside an object?

我的绑定如下:

ItemsSource =" {Binding Source = {StaticResource PageData},Path = questions,Mode = TwoWay}"

ItemsSource="{Binding Source={StaticResource PageData}, Path=questions, Mode=TwoWay}"

其中"问题" ;是实体集的路径。

where "questions" is the path to an EntitySet.

感谢任何指针。

Thanks for any pointers.

推荐答案




Code Snippet


这篇关于WPF绑定到EntitySet?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 02:32