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.
タスクがあります。テキストボックスは最初の文字の大文字のみを受け入れ、残りの文字は通常の文字を受け入れます。
テキスト ボックスの KeyPress イベントを使用します。
private void txt_KeyPress(オブジェクト送信者、KeyPressEventArgs e) { if (txt.Text != "" && !Char.IsUpper(txt.Text, 0)) { txt.Text = Char.ToUpper(txt.Text[0]) + txt.Text.Substring(1); } }