我对 TextBox 有疑问。当我在文本框中键入时,单词会自动更改。例如:“我的名字是 kumar”到“我的名字是 Kumar”,应该在 textBox1_TextChanged 事件上完成。
目前我正在休假活动中这样做
private void textBox1_Leave(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text.Substring(0, 1).ToUpper() + textBox1.Text.Substring(1);
}
请帮我完成它。提前非常感谢。:)