Mono 支持 INotifyPropertyChanged 吗?
我目前正在开发一个应用程序,它应该能够在标准 .Net Framework 和 Mono 下运行。我想知道我是否可以在我的业务模型中安全地实现 INotifyPropertyChanged
并且 Mono 框架会在不需要额外努力的情况下接受它?
一般来说,Mono 框架对数据绑定的支持是否足够好?
I'm currently developing an application that should be able to run under the standard .Net Framework as well as under Mono. I was wondering if I could safely implement INotifyPropertyChanged
in my business model and that the Mono Framework would pick it up without extra effort?
Is the support of data binding good enough in the Mono Framework in general?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 Mono 很好地支持其 Windows 窗体实现,包括数据绑定。在业务对象上实现
INotifyPropertyChanged
应该可以很好地与 Mono 及其数据绑定配合使用。Yes. Mono supports their Windows Forms implementation quite well, including data binding. Implementing
INotifyPropertyChanged
on your business objects should work well with Mono and their databinding.