我对多国公司来说有些新鲜。 我不相信,我努力做些什么是最好的。
这里的情况是:
我有一个将显示另一个窗口的小型和小型设备。 我可以打电话my NewWindowView.Show(
),但首先,我需要把我的新窗口的一些数据列入考试和测验。
我是否应将<条码>my NewWindowView和<条码>的新WindowViewModel/code>贴在“观点”上?
Here is an example:
class MainVM
{
public void FindCustomer(string nameParial)
{
List<Customer> customers = ServiceCall.GetCustomers(nameParital);
// This is the part I am not sure how to do. I am not sure if this
// View Model should have a reference to a different view model and
// the view too.
myNewWindowViewModel.CustomerList = customers;
myNewWindowView.Show();
}
}