This commit is contained in:
SuperJMN 2014-12-14 12:06:04 +01:00
Родитель 39691aecc3
Коммит 839302c997
1 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -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);