mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-13 19:43:24 +08:00
16 lines
364 B
C#
16 lines
364 B
C#
using BetterGenshinImpact.ViewModel.Pages;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BetterGenshinImpact.View.Pages;
|
|
|
|
public partial class HotKeyPage : UserControl
|
|
{
|
|
private HotKeyPageViewModel ViewModel { get; }
|
|
|
|
public HotKeyPage(HotKeyPageViewModel viewModel)
|
|
{
|
|
DataContext = ViewModel = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|