1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-25 15:20:10 +00:00
msfs-popout-panel-manager/WpfApp/ViewModel/DialogHelper.cs
2022-08-10 16:43:03 -04:00

65 lines
2.1 KiB
C#

using MSFSPopoutPanelManager.UserDataAgent;
using System.Collections.Generic;
using System.Windows;
namespace MSFSPopoutPanelManager.WpfApp.ViewModel
{
internal class DialogHelper
{
public static bool ConfirmDialog(string title, string message)
{
var dialog = new ConfirmationDialog(title, message);
dialog.Owner = Application.Current.MainWindow;
dialog.Topmost = true;
dialog.WindowStartupLocation = WindowStartupLocation.CenterOwner;
return (bool)dialog.ShowDialog();
}
public static AddProfileDialogResult AddProfileDialog(List<Profile> profiles)
{
var dialog = new AddProfileDialog(profiles);
dialog.Owner = Application.Current.MainWindow;
dialog.Topmost = true;
dialog.WindowStartupLocation = WindowStartupLocation.CenterOwner;
if ((bool)dialog.ShowDialog())
{
return new AddProfileDialogResult(dialog.ProfileName, dialog.SelectedCopyProfileId);
}
return null;
}
public static void PreferencesDialog(PreferencesViewModel preferencesViewModel)
{
var dialog = new PreferencesDialog(preferencesViewModel);
dialog.Owner = Application.Current.MainWindow;
dialog.Topmost = true;
dialog.WindowStartupLocation = WindowStartupLocation.CenterOwner;
dialog.ShowDialog();
}
public static void PanelConfigurationInstructionDialog()
{
var dialog = new PanelConfigurationInstructionDialog();
dialog.Owner = Application.Current.MainWindow;
dialog.Topmost = true;
dialog.WindowStartupLocation = WindowStartupLocation.CenterOwner;
dialog.ShowDialog();
}
}
internal class AddProfileDialogResult
{
public AddProfileDialogResult(string profileName, int copyPofileId)
{
ProfileName = profileName;
CopyProfileId = copyPofileId;
}
public string ProfileName { get; set; }
public int CopyProfileId { get; set; }
}
}