зеркало из https://github.com/AvaloniaUI/Avalonia.git
21 строка
570 B
C#
21 строка
570 B
C#
// -----------------------------------------------------------------------
|
|
// <copyright file="KeyEventArgs.cs" company="Steven Kirk">
|
|
// Copyright 2013 MIT Licence. See licence.md for more information.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace Perspex.Input
|
|
{
|
|
using System;
|
|
using Perspex.Interactivity;
|
|
|
|
public class KeyEventArgs : RoutedEventArgs
|
|
{
|
|
public IKeyboardDevice Device { get; set; }
|
|
|
|
public Key Key { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
}
|
|
}
|