mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
22 lines
375 B
C#
22 lines
375 B
C#
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace Launcher.View
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Setting.xaml 的交互逻辑
|
|||
|
/// </summary>
|
|||
|
public partial class Setting : Page
|
|||
|
{
|
|||
|
public Setting()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
DataContext = ViewModel.SettingVM.Instacne;
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//Visibility = Visibility.Hidden;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|