バージョン

KeyCode プロパティ

この項目のテキストを取得または設定します。
シンタックス
'宣言
 
Public Property KeyCode As Keys
public Keys KeyCode {get; set;}
使用例
Private Sub SetupKeys()
    
    Me.UltraCalculatorDropDown1.Buttons("=").KeyCode = Keys.Enter
    Me.UltraCalculatorDropDown1.Buttons("=").KeyCodeAlternate = Keys.Space

End Sub
private void SetupKeys()
{
	
	this.ultraCalculatorDropDown1.Buttons["="].KeyCode = Keys.Enter;
	this.ultraCalculatorDropDown1.Buttons["="].KeyCodeAlternate = Keys.Space;

}
参照