misc: add AcceptableKeys demo.
This commit is contained in:
@@ -1,8 +1,13 @@
|
||||
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,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user