Files
XplorePlane/XplorePlane/Views/Setting/SettingsWindow.xaml.cs
T
zhengxuan.zhang 9a8831c945 新增设置窗体
2026-05-06 14:13:19 +08:00

14 lines
256 B
C#

using System.Windows;
namespace XplorePlane.Views
{
public partial class SettingsWindow : Window
{
public SettingsWindow(object viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
}
}