mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
29 lines
899 B
C#
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;
|
|
}
|
|
}
|