ChineseChess/ChineseChess.GUI/Views/SettingsPage.xaml.cs
2021-05-30 22:57:53 +08:00

16 lines
314 B
C#

using System.Windows.Controls;
using ChineseChess.GUI.ViewModels;
namespace ChineseChess.GUI.Views
{
public partial class SettingsPage : Page
{
public SettingsPage(SettingsViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
}
}