e->SuppressKeyPress = true;したら鳴らなくなった。原因不明。
以下はc++/cliソース。
1 2 3 4 5 6 7 8 9 10 11 12 |
System::Void FormMain::combo_KeyDown(System::Object^ sender, System::Windows::Forms::KeyEventArgs^ e) { switch(e->KeyValue) { case System::Windows::Forms::Keys::Enter: // 13 { DoSomething(); e->SuppressKeyPress = true; } break; } } |