C# WinForm中TextBox文本框默认为灰色,当输入鼠标点击时字体变黑

2024-12-16 15:32:48
推荐回答(1个)
回答1:

代码:
在单击事件里面就可以实现简单的效果了
private void txt_IF_user_Click(object sender, EventArgs e)
{
txt_IF_user.Text = "";
txt_IF_user.ForeColor = Color.Black;
}