mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
21 lines
498 B
C#
21 lines
498 B
C#
|
using MahApps.Metro.Controls;
|
|||
|
using System.Windows;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.WpfApp
|
|||
|
{
|
|||
|
public partial class ConfirmationDialog : MetroWindow
|
|||
|
{
|
|||
|
public ConfirmationDialog(string title, string message)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
this.Title = title;
|
|||
|
this.txtMessage.Text = message;
|
|||
|
}
|
|||
|
|
|||
|
private void btnDialogYes_Click(object sender, RoutedEventArgs e)
|
|||
|
{
|
|||
|
this.DialogResult = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|