protected override bool ProcessDialogKey(Keys keyData) { switch (keyData) { case Keys.A | Keys.Control: if (this.ActiveControl is TextBox) { TextBox txt = (TextBox)this.ActiveControl; txt.SelectionStart = 0; txt.SelectionLength = txt.Text.Length; return true; } break; } return base.ProcessDialogKey(keyData); }
'SoftWare > Visual C#' 카테고리의 다른 글
C# 우선순위 큐 (0) | 2014.09.20 |
---|---|
병렬처리 (0) | 2013.03.18 |
C# 코드 시간 측정하기 (0) | 2011.12.30 |
C# WPF 핸들 사용하기 (0) | 2011.11.03 |
C# 시리얼통신 소스 (0) | 2011.08.11 |
댓글