Newer
Older
Qwilight / Qwilight / View / FavorJudgmentWindow.xaml.cs
@Taehui Taehui on 14 Nov 330 bytes 2023-11-15 오전 12:09
using Qwilight.ViewModel;
using System.Windows.Input;

namespace Qwilight.View
{
    public sealed partial class FavorJudgmentWindow
    {
        public FavorJudgmentWindow() => InitializeComponent();

        void OnInputLower(object sender, KeyEventArgs e) => (DataContext as FavorJudgmentViewModel).OnInputLower(e);
    }
}