我们日常在使用textbox时想在文本框中显示提示文字,类似于网页文本框中的placeholder属性。在光标定位到文本框上时还不需要删除提示的文字,可直接使用文本框这怎么实现呢,下面一起看一下:
如果我们直接在文本框的Text属性直接设置提示文字,那当光标定位到文本框时我们还需要删除文字才能再去输入自己想要的文字,下面一块看一下另一种方法:
效果
实现
首先拖拽两个文本框,将文本框的TabIndex属性不要设置为0或1,把页面上其它某一个控件的TabIndex的属性设为0。(这一步很重要,目的是启动窗体时光标不会定位到文本框中)
然后在文本框的Enter和Leave事件设置以下代码即可
private void user_text_Enter(object sender, EventArgs e)
{
if (user_text.Text.Trim() == "账号")
{
user_text.Text = "";
}
}
private void user_text_Leave(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(user_text.Text))
{
user_text.Text = "账号";
}
}
private void pwd_text_Enter(object sender, EventArgs e)
{
if (pwd_text.Text.Trim() == "密码")
{
pwd_text.Text = "";
pwd_text.PasswordChar = '*';
}
}
private void pwd_text_Leave(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(pwd_text.Text))
{
pwd_text.Text = "密码";
pwd_text.PasswordChar = '\0';
}
}