1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 22:00:11 +00:00
msfs-popout-panel-manager/MainApp/AppUserControl/Dialog/AddProfileDialog.xaml.cs
2024-02-27 21:44:21 -05:00

29 lines
899 B
C#

using MaterialDesignThemes.Wpf;
using Microsoft.Extensions.DependencyInjection;
using MSFSPopoutPanelManager.MainApp.ViewModel;
using System.ComponentModel;
using System.Windows;
namespace MSFSPopoutPanelManager.MainApp.AppUserControl.Dialog
{
public partial class AddProfileDialog
{
public AddProfileViewModel ViewModel { get; set; }
public AddProfileDialog()
{
InitializeComponent();
if (DesignerProperties.GetIsInDesignMode(new DependencyObject()))
return;
ViewModel = App.AppHost.Services.GetRequiredService<AddProfileViewModel>();
Loaded += (_, _) =>
{
DataContext = ViewModel;
BtnAccept.IsEnabled = false;
};
}
public DialogClosingEventHandler ClosingEventHandler => ViewModel.ClosingEventHandler;
}
}