1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/WpfApp/ViewModel/DialogHelper.cs

76 lines
2.5 KiB
C#
Raw Normal View History

2022-07-23 19:23:32 +00:00
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)
{
2022-08-08 06:07:24 +00:00
var dialog = new ConfirmationDialog(title, message);
2022-07-23 19:23:32 +00:00
dialog.Owner = Application.Current.MainWindow;
dialog.Topmost = true;
dialog.WindowStartupLocation = WindowStartupLocation.CenterOwner;
return (bool)dialog.ShowDialog();
}
public static bool ConfirmDialog(string title, string message, Window owner)
{
var dialog = new ConfirmationDialog(title, message);
dialog.Owner = owner;
dialog.Topmost = true;
dialog.WindowStartupLocation = WindowStartupLocation.CenterOwner;
return (bool)dialog.ShowDialog();
}
2022-07-23 19:23:32 +00:00
public static AddProfileDialogResult AddProfileDialog(List<Profile> profiles)
{
2022-08-08 06:07:24 +00:00
var dialog = new AddProfileDialog(profiles);
2022-07-23 19:23:32 +00:00
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)
{
2022-08-08 06:07:24 +00:00
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();
2022-07-23 19:23:32 +00:00
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; }
}
}