約17,500件1ページ目

日本語のみで絞り込む

The ProcessDialogKey simply sends the character to the parent's ProcessDialogKey method, or returns false if the control has no parent. The Form class overrides ...

2023/5/31 -Use ProcessKeyPreview for general keystroke input events, ProcessDialogKey when handling keystrokes that have special meaning for the dialog box or form itself.

2019/5/3 -Override the ProcessDialogKey Method on multiple forms · Ask Question. Asked 6 years, 1 month ago. Modified 6 years, 1 ...

2003/10/27 -The Control Class has an overridable method called ProcessDialogKey. My form will process the dialog key that was pressed no matter what control ...

2011/5/12 -protected override bool ProcessDialogKey(Keys keyData) { if (keyData == Keys.Escape) { this.Close(); return true; } else return base.

2011/1/23 -Hi,. currently I am trying to capture key stroke combinations within the ProcessDialogKey, like Ctrl+A or Alt+F4. I couldn't find out ...

2015/7/16 -... Keys keyData) { switch (keyData) { case Keys.Up: case Keys.Down: // case Keys.Right: // case Keys.Left: FocusHelper.ProcessDialogKey(keyData); ...

2013/4/21 -TextBox control considers arrow keys as input keys (IsInputKey returns True), so ProcessDialogKey is not called in that case.

What is the reason for ProcessDialogKey of the form hosting TreeViewAdv not triggers escape when WinForms TreeViewAdv has focus and escape key?

ProcessDialogKey では、A などのキーは利用しないので、これが正しい挙動なんでしょうが、コンボボックスにフォーカスが無い場合に、A などをアクセラレーターキーで使用 ...