Caliburn.micro propertychanged 视图中的问题
我将 Caliburn.Micro 用于我的 Silverlight 应用程序。 我有一个视图/视图模型来创建一个新项目。 视图上有一个组合框。 我第一次打开视图,填写所有字段,项目已正确保存。 第二次打开视图,填写所有字段,对象中所有字段的值都发生了更改,除了组合框的值之外,Item 的此属性保持为 0(它是一个整数)。
有什么想法吗?我认为 Caliburn 框架正在做一些奇怪的事情。
谢谢,
菲利普
I use Caliburn.Micro for my Silverlight application.
I have a view/viewmodel to create a new Item.
On the view there is one combobox.
The first time I open the view , fill in all fields, the Item is saved correctly.
The second time I open the view, fill in all fields, all teh values of them are changed in the object, except the value of the combobox, this property of Item stays 0 (it's an integer).
Any ideas why this is? I think the Caliburn framework is doing something weird.
thanks,
Filip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开视图的代码是:
EventAggreg.EventAgg.Publish(new ObjectDetailEvent() { ObjectDetail = new ObjectDTO() });
我将其替换为:
EventAggreg.EventAgg.Publish(new ObjectDetailEvent() { ObjectDetail = new ObjectDTO { LandId = 0 } });
LandId 是绑定到组合框的属性。
因此,当默认填写此内容时,通知每次都会完美运行。
The code to open the view was:
EventAggreg.EventAgg.Publish(new ObjectDetailEvent() { ObjectDetail = new ObjectDTO() });
I replaced it with:
EventAggreg.EventAgg.Publish(new ObjectDetailEvent() { ObjectDetail = new ObjectDTO { LandId = 0 } });
LandId is the property bound to the combobox.
So when this is filled in by default, teh notify works perfect every time.