这是没有默认退出按钮关闭棱镜应用程序的正确方法吗?

时间:2013-05-06 10:36:33

标签: .net wpf mvvm prism

应用程序的窗口没有边框,因此右边没有退出按钮?如何以正确的方式关闭它?

这是我的方式,fisrt将命令绑定到自定义退出按钮。

<Button Content="Exit" HorizontalAlignment="Left" Margin="327,198,0,0" VerticalAlignment="Top" Width="75" Command="{Binding ExitCommand}"/>

单击按钮时在ViewModel中抛出异常。

class ViewModel:NotificationObject
{
    public ViewModel()
    {
        this.ExitCommand = new DelegateCommand(new Action(this.ExecuteExitCommand));
    }

    public DelegateCommand ExitCommand { get; set; }

    public void ExecuteExitCommand()
    {
        throw new ApplicationException("shutdown");
    }
}

在Application class

中捕获异常
public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);
        Bootstrapper bootstrapper = new Bootstrapper();
        AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
        try
        {
            bootstrapper.Run();
        }
        catch (Exception ex)
        {
            HandleException(ex);
        }
    }

    private static void AppDomainUnhandledException(object sender, UnhandledExceptionEventArgs e)
    {
        HandleException(e.ExceptionObject as Exception);
    }

    private static void HandleException(Exception ex)
    {
        if (ex == null)
            return;
        Environment.Exit(1);
    }
}

1 个答案:

答案 0 :(得分:5)

或许可以使用Application.Current.Shutdown() ??

public void ExecuteExitCommand()
{
    Application.Current.Shutdown();
}

使用Exception作为通信机制似乎很奇怪。

如果您不想因任何原因在VM中调用ShutDown(),请使用Messenger(在EventAggregator的Prism中)发送可从Application Class订阅的自定义消息或者MainWindow的代码隐藏并调用相同的Application.Current.Shutdown()