Files
Ursa.Avalonia/demo/Ursa.Demo/ViewModels/KeyGestureInputDemoViewModel.cs
2023-07-30 22:34:07 +08:00

13 lines
307 B
C#

using System.Collections.Generic;
using Avalonia.Input;
using CommunityToolkit.Mvvm.ComponentModel;
namespace Ursa.Demo.ViewModels;
public class KeyGestureInputDemoViewModel: ObservableObject
{
public List<Key> AcceptableKeys { get; set; } = new List<Key>()
{
Key.A, Key.B, Key.C,
};
}