我想覆盖 OnStartup 就像在这个线程中解释的那样
现在是我使用 MVVM Light Toolkit 的问题,它抛出 XamlParseException ,表示“定位器”是未知的,在这一点上:
DataContext="{Binding Main, Source={StaticResource Locator}}
我对设计时间没有问题
应用程序.xaml
<Application.Resources>
<!--Global View Model Locator-->
<vm:ViewModelLocator x:Key="Locator"
d:IsDataSource="True" />
</Application.Resources>
我的覆盖
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
if (e.Args.Length > 0 && e.Args[0] == "\\start")
{
/* do stuff without a GUI */
MessageBox.Show("Start");
}
else
{
MainWindow mainWindow = new MainWindow(); // <-- Exception
ViewModelLocator locator = new ViewModelLocator();
mainWindow.DataContext = locator.Main;
mainWindow.ShowDialog();
}
this.Shutdown();
}
如何将命令行与 MVVM Light Toolkit 结合使用?
更新 13.02.2013 10:10
有了这个 Override,不再有例外。但是,如果 ViewModelLocator 已经在 xaml 中声明,为什么我必须将其添加到资源中?
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
if (e.Args.Length > 0 && e.Args[0] == "\\start")
{
/* do stuff without a GUI */
MessageBox.Show("Start");
}
else
{
ViewModelLocator locator = new ViewModelLocator();
Resources.Add("Locator", locator);
MainWindow mainWindow = new MainWindow();
//DataContext="{Binding Main, Source={StaticResource Locator}}"
//mainWindow.DataContext = locator.Main;
mainWindow.ShowDialog();
}
this.Shutdown();
}