13 lines
307 B
C#
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,
|
|
};
|
|
} |