Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
vb で Button.KeyPress イベントを実行するにはどうすればよいですか?
たとえば、 Button.Click 、ボタンを押す必要があるので、 Button.KeyPress はどうですか
ランタイムについて話していると仮定すると、KeyPressイベントを発生させるには、最初にボタンを選択してから (キーボード) ボタンを押す必要があります。
KeyPress
KeyPressは通常、 のようなものに使用されますが、通常はではTextbox使用されませんButton
Textbox
Button
Button.Clickイベントを強制する方法を探している場合は、いつでも呼び出すことができますMe.Button1.PerformClick()
Button.Click
Me.Button1.PerformClick()