[MVVM Light]Messenger 的使用
阅读原文时间:2023年07月12日阅读:2

原文:[MVVM Light]Messenger 的使用

当我们使用MVVM开发模式进行开发时,ViewModel之间的通信常常是很头疼的事情,好在MVVM Light提供了Messenger类可以轻松的在ViewModel之间传递消息。

Messenger

Messenger 其他类成员可以通过Register 方法 来建立与Messenger的联系,注册时包含当收到Message的时候要执行的方法。当使用Send方法时,注册的相关的方法将会被调用。

The Messager is a class allowing objects to exchange message.

主要成员:

Register method :

//Registers a recipient for a type of message TMessage. The action

//parameter will be executed when a corresponding message is sent.

void Register(object recipient, object token, Action action);

void Register(object recipient, Action action);

void Register(object recipient, object token, bool receiveDerivedMessagesToo, Action action);

void Register(object recipient, bool receiveDerivedMessagesToo, Action action);

Send method

例子:

在MainViewModel类中

Messenger.Default.Register(this, true, m => BackgroundBrush = m);

表示注册Brush类型的Message。

在SettingViewModel类中

Messenger.Default.Send(

GetCurrentBrush());

当执行这段代码时,会调用MainViewModel 注册message时所写的m => BackgroundBrush = m;

其中 m 表示消息内容。

Register函数的结构如下:

void Register(object recipient, object token, Action action);

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章