0

我正在使用 MVVM Light Toolkit 在 WPF 中开发简单的应用程序。我有两种看法:

  • 主视图(默认)
  • 客户视图

这是 MainViewModel 类的一部分:

    public MainViewModel()
    {
        CurrentViewModel = Bootstrapper.Instance.Container.Resolve<HomeViewModel>();
    }

    private void ExecuteShowCustomersCommand()
    {
        CurrentViewModel = Bootstrapper.Instance.Container.Resolve<CustomersViewModel>();
    }

在 CustomerViewModel 我有财产:

    public ObservableCollection<Customers> Customers
    {
        get { return _customers; }
        set
        {
            if (_customers == value) return;
            _customers = value;
            RaisePropertyChanged(CustomersPropertyName);
        }
    }

我的问题是,我什么时候应该调用 Web 服务来获取客户数据?在 CustomerViewModel 构造函数中?

4

1 回答 1

0

我会在视图模型的构造函数中执行此操作,并使用 IoC 容器来获取实例。

申请开始

SimpleIoc.Default.Register<IDataService, DataService>();
SimpleIoc.Default.Register<MyViewModel>();

视图模型

public MyViewModel(IDataService DataService)
{
     Mydata = DataService.GetData(); // Edit: Could also be done in a property with lazy load
}

定位器

public MyViewModel MyVM
{
    get 
    { 
        return SimpleIoc.Default.GetInstance<MyViewModel>();
    }
}
于 2013-07-09T13:41:29.327 回答