зеркало из https://github.com/AvaloniaUI/Avalonia.git
Fixed entering of letter A
This commit is contained in:
Родитель
39691aecc3
Коммит
839302c997
|
@ -179,8 +179,13 @@ namespace Perspex.Controls
|
|||
case Key.A:
|
||||
if (modifiers == ModifierKeys.Control)
|
||||
{
|
||||
this.SelectionStart = 0;
|
||||
this.SelectionEnd = this.Text.Length;
|
||||
SelectAll();
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
textEntered = true;
|
||||
goto default;
|
||||
}
|
||||
|
||||
break;
|
||||
|
@ -273,6 +278,12 @@ namespace Perspex.Controls
|
|||
e.Handled = true;
|
||||
}
|
||||
|
||||
private void SelectAll()
|
||||
{
|
||||
this.SelectionStart = 0;
|
||||
this.SelectionEnd = this.Text.Length;
|
||||
}
|
||||
|
||||
protected override void OnPointerPressed(PointerPressEventArgs e)
|
||||
{
|
||||
var point = e.GetPosition(this);
|
||||
|
|
Загрузка…
Ссылка в новой задаче