数据绑定POCO属性

编程入门 行业动态 更新时间:2024-10-24 08:32:29
本文介绍了数据绑定POCO属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 是否有任何数据绑定框架(BCL或其他)允许在实现 INotifyPropertyChanged 和<$ c $的任何两个CLR属性之间绑定c> INotifyCollectionChanged ?似乎应该可以这样做:

var binding = new Binding(); binding.Source = someSourceObject; binding.SourcePath =Customer.Name; binding.Target = someTargetObject; binding.TargetPath =Client.Name; BindingManager.Bind(binding);

其中 someSourceObject 和 someTargetObject 只是实现 INotifyPropertyChanged 的POCO。但是,我不知道有什么BCL对此的支持,不知道现有的框架是否允许这样做。

更新:给定没有现有的图书馆可用,我已经把它自己写下来了。 这里可用。

谢谢

解决方案

我写了桁架填补空白。

Are there any data binding frameworks (BCL or otherwise) that allow binding between any two CLR properties that implement INotifyPropertyChanged and INotifyCollectionChanged? It seems to be it should be possible to do something like this:

var binding = new Binding(); binding.Source = someSourceObject; binding.SourcePath = "Customer.Name"; binding.Target = someTargetObject; binding.TargetPath = "Client.Name"; BindingManager.Bind(binding);

Where someSourceObject and someTargetObject are just POCOs that implement INotifyPropertyChanged. However, I am unaware of any BCL support for this, and am not sure if there are existing frameworks that permit this.

UPDATE: Given that there is no existing library available, I have taken it upon myself to write my own. It is available here.

Thanks

解决方案

I wrote Truss to fill the void.

更多推荐

数据绑定POCO属性

本文发布于:2023-07-27 11:53:59,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1222313.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:绑定   属性   数据   POCO

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!