在我的 Caliburn Bootstrapper 中,我试图验证用户是否有权运行我的应用程序。如果他们不这样做,我需要向他们展示一条消息并退出。以下代码在 MessageBox.Show() 调用上引发 NullReferenceException。即使我在方法中移动ComposeMef()
调用,它仍然会出错。ValidateUserHasPermissionsToRun()
Configure()
public class MyBootstrapper : Bootstrapper<DropWindowViewModel>
{
// irrelevant methods omitted for brevity
protected override void Configure()
{
this.InitializeSecurity();
this.ValidateUserHasPermissionToRun();
this.ComposeMef();
}
private void ComposeMef()
{
AggregateCatalog catalog = new AggregateCatalog(AssemblySource.Instance.Select(x => new AssemblyCatalog(x)).OfType<ComposablePartCatalog>());
this.container = new CompositionContainer(catalog);
CompositionBatch batch = new CompositionBatch();
batch.AddExportedValue<IWindowManager>(new WindowManager());
batch.AddExportedValue<IEventAggregator>(new EventAggregator());
batch.AddExportedValue(this.container);
batch.AddExportedValue(catalog);
this.container.Compose(batch);
}
private void ValidateUserHasPermissionToRun()
{
User user = SecurityContext.Current.SecurityUser;
if (!user.HasPrivilege(Constants.PrivilegeLoadData))
{
// throws an exception
MessageBox.Show("You do not have access to VIPER. Please contact the help desk if you need help.");
this.TerminateApplication();
}
}
}
处理这个问题的正确方法是什么?对于这么简单的事情,我只想显示一个消息框。我真的不想编写一个全新的 ViewModel/View。如果我必须使用不同的 ViewModel,我将如何切换 Caliburn 使用的 ViewModel?或者我应该在 上设置一个属性DropWindowViewModel
来触发不同的界面?