14 lines
256 B
C#
14 lines
256 B
C#
using System.Windows;
|
|
|
|
namespace XplorePlane.Views
|
|
{
|
|
public partial class SettingsWindow : Window
|
|
{
|
|
public SettingsWindow(object viewModel)
|
|
{
|
|
InitializeComponent();
|
|
DataContext = viewModel;
|
|
}
|
|
}
|
|
}
|