关于视图和视图模型的 Silverlight MVVM 问题

发布于 2024-10-17 03:58:36 字数 418 浏览 2 评论 0原文

我对视图模型更改时如何实现视图切换感到困惑。
我想做的事情的例子:
我想要制作的控件类似于向导控件。我有一个添加到向导步骤集合中的视图模型列表,以及一个当前项目视图模型。如何显示活动视图模型的视图并切换它们然后活动视图模型发生变化?我如何绑定它们?
在 WPF 中,我会使用 DataTemplate,但 Silverlight 不支持 x:Type。

<DataTemplate DataType="{x:Type ViewModel1}">
  <view:View1 />
</DataTemplate>

<DataTemplate DataType="{x:Type ViewModel2}">
  <view:View2 />
</DataTemplate>

I feel mysefl confused about how to implement view switching when view model changes.
Example of what i'm tring to do:

The control I want to make is something like a wizard control. I have a list of view models added to collection of wizardsteps, and a current item viewmodel. How to display the view of active view model and switch them then active view model changes? How do I bind them?

In WPF I'd use DataTemplate but Silverlight doesn't support x:Type.

<DataTemplate DataType="{x:Type ViewModel1}">
  <view:View1 />
</DataTemplate>

<DataTemplate DataType="{x:Type ViewModel2}">
  <view:View2 />
</DataTemplate>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

牛↙奶布丁 2024-10-24 03:58:36

我认为向导是一种情况,您应该为多个视图使用一个 ViewModel。

您可以使用属性(IsPage1Visible、IsPage2Visible,...)、命令(PreviowsPageCommand、NextPageCommand、CancelComamnd)和仅在一个虚拟机中的所有逻辑来控制每个视图的可见性。

将向导的所有“页面”放入一个 UserControl 中,并将每个页面的可见性与布尔属性和 BooleanToVisibilityConverter 绑定。

I think a wizard is a case where you should have one ViewModel for multiple Views.

You could control the visibility of each view with Properties (IsPage1Visible, IsPage2Visible,...), Commands (PreviowsPageCommand, NextPageCommand, CancelComamnd) and all logic in only one VM.

Put all "pages" of the wizard in one UserControl and bind the visilitiy of each with the boolean properties and a BooleanToVisibilityConverter.

如梦亦如幻 2024-10-24 03:58:36

看看这个,它讨论了 SL/WPF 中的非线性导航以及如何维护状态。 http://karlshifflett.wordpress.com/ 2010/07/07/非线性导航-in-silverlight-4/

Check this out, it talks about non-linear navigation in SL/WPF and how to maintain state. http://karlshifflett.wordpress.com/2010/07/07/non-linear-navigation-in-silverlight-4/

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