GtkKeyboardDevice.cs 480 B

123456789101112131415161718
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Reflection;
  7. using System.Text;
  8. using Avalonia.Input;
  9. namespace Avalonia.Gtk
  10. {
  11. public class GtkKeyboardDevice : KeyboardDevice
  12. {
  13. public new static GtkKeyboardDevice Instance { get; } = new GtkKeyboardDevice();
  14. }
  15. }