mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-21 18:52:36 +01:00
parent
2093f2e3f0
commit
6429cec4cb
@ -267,6 +267,21 @@ namespace Nikse.SubtitleEdit.Controls
|
||||
KeyDown?.Invoke(sender, e);
|
||||
Invalidate();
|
||||
}
|
||||
else if (e.Modifiers == Keys.Control && e.KeyCode == Keys.A)
|
||||
{
|
||||
_textBox.SelectAll();
|
||||
e.SuppressKeyPress = true;
|
||||
}
|
||||
if (e.Modifiers == Keys.Control && e.KeyCode == Keys.C)
|
||||
{
|
||||
_textBox.Copy();
|
||||
e.SuppressKeyPress = true;
|
||||
}
|
||||
if (e.Modifiers == Keys.Control && e.KeyCode == Keys.V)
|
||||
{
|
||||
_textBox.Paste();
|
||||
e.SuppressKeyPress = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
KeyDown?.Invoke(sender, e);
|
||||
|
Loading…
Reference in New Issue
Block a user