mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
15 lines
408 B
C#
15 lines
408 B
C#
|
using MahApps.Metro.Controls;
|
|||
|
using MSFSPopoutPanelManager.WpfApp.ViewModel;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.WpfApp
|
|||
|
{
|
|||
|
public partial class TouchPanelBindingDialog : MetroWindow
|
|||
|
{
|
|||
|
public TouchPanelBindingDialog(TouchPanelBindingViewModel touchPanelBindingViewModel)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
this.DataContext = touchPanelBindingViewModel;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|