码迷,mamicode.com
首页 > Windows程序 > 详细

C# Winform 文本框默认提示信息

时间:2019-10-23 09:44:43      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:rgs   gray   oid   box   nta   winform   信息   for   csharp   

private string Notes = "提示文本";
private void textBox1_Leave(object sender, EventArgs e)
{
    //  退出失去焦点,重新显示
    if (string.IsNullOrEmpty(textBox1.Text))
    {
        textBox1.ForeColor = Color.DarkGray;
        this.textBox1.Text = Notes;
    }
}

private void textBox1_Enter(object sender, EventArgs e)
{
    //  进入获得焦点,清空
    if (textBox1.Text == Notes)
    {
        textBox1.ForeColor = Color.Black;
        this.textBox1.Text = "";
    }
}

  

C# Winform 文本框默认提示信息

标签:rgs   gray   oid   box   nta   winform   信息   for   csharp   

原文地址:https://www.cnblogs.com/baissy/p/11724042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!