Caliburn.micro propertychanged 视图中的问题

发布于 2024-11-26 17:01:26 字数 235 浏览 1 评论 0原文

我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一笔一画续写前缘 2024-12-03 17:01:26

打开视图的代码是:
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文