每当我想从 View 模型打开一个新窗口时,通常我都会使用 messenger 。但现在我想从视图模型打开一个新窗口,并将一个对象从调用视图模型传递给被调用的视图模型。我该如何实施?在我的 viewmodelbase 类中,目前我有以下方法。
public void SendNotificationMessage(string notification)
{
Messenger.Default.Send<NotificationMessage>(new NotificationMessage(notification));
}
public void SendNotificationMessageAction(string notification, Action<object> callback)
{
var message = new NotificationMessageAction<object>(notification, callback);
Messenger.Default.Send(message);
}
请帮我