using Avalonia.Controls; using Avalonia.Markup.Xaml; using Remotely.Desktop.Shared; using Microsoft.Extensions.DependencyInjection; namespace Remotely.Desktop.UI.Views; public partial class MainWindow : Window { public MainWindow() { if (!Design.IsDesignMode) { DataContext = StaticServiceProvider.Instance?.GetService(); } InitializeComponent(); Closed += MainWindow_Closed; } private void MainWindow_Closed(object? sender, EventArgs e) { var dispatcher = StaticServiceProvider.Instance?.GetService(); dispatcher?.Shutdown(); } }