0

大家好,我正在努力解决在 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));

就我而言,我想从“SelectedStop”方法发送结果,我该怎么做?

4

1 回答 1

1

请查看 Catel 的“ WPF 入门”部分。它将指导您创建具有所有基础知识的第一个应用程序。基础之一是显示带有上下文的窗口。

您可以在此处找到非常详细的说明(带有屏幕截图等)。

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

然后查看“将所有内容连接在一起”部分,尤其是命令(其中 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 );
于 2014-08-28T12:13:23.280 回答