WPF / Silverlight - 跨多个XAML绑定

时间:2010-11-26 12:35:05

标签: silverlight binding prism

大家好,

考虑Prism(WPF / Silverlight)的常见场景,其中我们有多个区域,并且每个区域都有一个视图(XAML),因此当我们使用鼠标与一个视图(XAML)交互时可能会出现这种情况或键盘,我们可能希望相应地更改或更新其他视图(恰好是不同的 XAML)。例如,在从视图中选择项目时,例如 ItemPanelView ,我们可能希望在其他视图中显示所选项目的详细信息,例如 ItemDetailsView

所以我的问题是,

将元素从一个视图(XAML)绑定到其他视图(不同的 XAML)中的元素以实现这些功能是不是一个好主意?如果我没错,使用这种方法我们就不需要从一个演示者转到另一个(使用TwoWay绑定等),以便更新其他区域的视图。

或者,有没有优雅而简单的方法来做到这一点?

2 个答案:

答案 0 :(得分:0)

我建议你看一下Prism的EventAggregator(http://blogs.msdn.com/b/francischeung/archive/2008/06/02/decoupled-communication-with-prism-event-aggregation.aspx)。您的每个视图(或者最好是视图可以使用触发器响应/更新的视图模型)都可以订阅/发布共享事件。但是,我建议不要简单地响应鼠标单击或键盘事件来引发此共享事件,而是使共享事件有意义(即MyItemSelected或MyItemHidden)。如果您需要更多帮助或澄清,请告诉我。

答案 1 :(得分:0)

在不破坏PRiSM的规范概念的情况下,有几种方法可以做到这一点。 正如[MSDN docs] [1](第9章:松散耦合组件之间的通信)告诉我们:

在模块之间进行通信时,了解方法之间的差异非常重要,这样您才能最好地确定在特定方案中使用哪种方法。 Prism Library提供以下沟通方法:

 Commanding. Use when there is an expectation of immediate action from the user interaction.
 Event aggregation. For communication across view models, presenters, or controllers when there is not a direct action-reaction expectation.
 Region context. Use this to provide contextual information between the host and views in the host's region. This approach is somewhat similar to the DataContext, but it does not rely on it.
 Shared services. Callers can call a method on the service which raises an event to the receiver of the message. Use this if none of the preceding is applicable.

在您的情况下,您应该使用EventAggregator或RegionContext。共享ViewModel是可能的,但这是最后的手段。