我想在没有输入时突出显示一个文本框,这是我的示例代码
if (textBox2.Text == "")
{
MessageBox.Show("Please put your password");
textBox2.Focus();
}
我想突出显示它,因为它像发光一样,但它只将 Ibeam 光标设置到文本框,请帮助我,在此先感谢 :)