从 SubSonic 2.2 集合创建 WPF ObservableCollection
如果我有一个由 SubSonic 2.2 创建的 DAL,如何将其创建的集合转换为代码 (pref.VB.NET) 中的 WPF ObservableCollections 以供 WPF 使用?
If I have a DAL created by SubSonic 2.2, how do I convert the Collections created by it to WPF ObservableCollections in code (pref.VB.NET) to be consumed by WPF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
抱歉!VB:
Sorry !VB:
您必须手动将其添加到您的 DAL 类中,但这并不太难。 在每个数据访问层类的顶部,添加“Implements INotifyPropertyChanged”,然后在每个属性中,添加“set”中的代码,如下所示。
You would have to manually add this to your DAL classes, but it's not too hard. In the top of each data access layer class, add "Implements INotifyPropertyChanged" and then in each property, add the code in the "set" like you see below.