4

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

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

<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 类中捕获异常

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);
    }
}
4

2 回答 2

7

只是也许使用Application.Current.Shutdown()??

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

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

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

于 2013-05-06T10:53:24.517 回答
0

我个人喜欢这样做:

private DelegateCommand terminateApplication;
public ICommand TerminateApplication => terminateApplication ??= new 
DelegateCommand(PerformTerminateApplication);

private void PerformTerminateApplication()
{
    Environment.Exit(0);
}
于 2021-12-29T07:20:11.920 回答