mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 22:00:11 +00:00
15 lines
410 B
C#
15 lines
410 B
C#
|
using MSFSPopoutPanelManager.MainApp.ViewModel;
|
|||
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.MainApp
|
|||
|
{
|
|||
|
public partial class ConfirmationDialog : UserControl
|
|||
|
{
|
|||
|
public ConfirmationDialog(string content, string confirmButtonText)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
DataContext = new ConfirmationViewModel(content, confirmButtonText);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|