Catel MVVM:如何在Windows之间传递数据

时间:2014-08-28 11:27:05

标签: c# wpf mvvm catel

大家好,我正在努力解决在Catel MVVM模型中的视图模型之间发送数据的过程。我有一个按钮,点击我想打开一个新窗口,并将一些数据(对象)发送到新打开的窗口。但是我无法自己解决这个问题,你能帮助我吗?

在我的第一个视图模型中,我有:

private readonly IShowStopInfo stopInfo;

//Main constructor of the class
public StopViewModel(IGrtrService grtrService, IShowStopInfo stopInfo)
{
    this.stopInfo = stopInfo;

    Argument.IsNotNull(() => grtrService);
    _grtrService = grtrService;

    AllStops = _grtrService.LoadStop();
    Stop_Line = _grtrService.LoadLines();

    ShowSelectedValue = new Command(OnStopsInfo);
}
public Command ShowSelectedValue { get; private set; }

private void OnStopsInfo()
{
    stopInfo.ShowStopInfo();
}
//Getting Selected Stop from the list
public Stop SelectedStop
{
    get { return GetValue<Stop>(SelectedStopProperty); }
    set { SetValue(SelectedStopProperty, value); }
}
public static readonly PropertyData SelectedStopProperty =  RegisterProperty("SelectedStop", typeof(Stop));

在我的情况下,我想发送方法&#34; SelectedStop&#34;我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

请查看&#34; Getting started with WPF&#34;卡特尔部分。它将指导您创建具有所有基础知识的第一个应用程序。其中一个基础是显示一个带有上下文的窗口。

你可以找到一个非常详细的解释(有截图等)here

基本上,您必须使用窗口视图模型的第一个参数作为模型注入(在示例中它是Person模型)。

然后查看&#34; hooking up everything together&#34;部分,尤其是命令(其中IUIVisualizerService用于创建当前所选人员或家庭的窗口)。

例如,详细信息vm如下所示:

public class MyStopDetailsViewModel : ViewModelBase
{
    public MyStopDetailsViewModel(Stop myStop, IMessageService messageService, IPleaseWaitService pleaseWaitService)
    {
         // Here is the context with the injected Stop parameter. Note that I have
         // also injected several other services to show how you can use the combination
    }
}

您可以按如下方式调用此方法(如示例中所示):

var typeFactory = this.GetTypeFactory();
var stopDetailsViewModel = typeFactory.CreateInstanceWithParametersAndAutoCompletion<MyStopDetailsViewModel>(SelecteedStop);
_uiVisualizerService.ShowDialog(stopDetailsViewModel );