ボタンをクリックして有効にすることができますが、キーボードのキーを離すとボタンが有効になりません。コードは、C#で、私はtrue
にフォームのプロパティを設定しKeyPreview
キーボードのキーを押してC#ボタンをアクティブにできません
private void btnApiBetHigh_KeyUp(object sender, System.Windows.Forms.KeyEventArgs e)
{
if (e.KeyCode == Keys.F)
{
CurrentSite.amount = ((decimal)nudApiBet.Value);
CurrentSite.chance = (decimal)(nudApiChance.Value);
CurrentSite.PlaceBet(true, (decimal)nudApiBet.Value, (decimal)(nudApiChance.Value));
}
}
キーを押したときにボタンにフォーカスがありますか? –
ボタンにフォーカスがあるときに「F」を押してボタンをアクティブにしたいのはなぜですか?あなたの要件は何ですか? –
@Andrew Morton Focus? – user208204