gpt4 book ai didi

c# - Windows 窗体中用于实时搜索的文本框

转载 作者:太空宇宙 更新时间:2023-11-03 19:27:38 27 4
gpt4 key购买 nike

如何创建一个文本框,当它为空时以灰色显示“搜索”,以及当用户开始向其中输入文本时的标准行为?

最佳答案

通过 TextBox 事件 EnterLeave 和属性完成:

    private void textBox1_Leave(object sender, EventArgs e)
{
if(textBox1.Text.Trim().Length == 0)
{
textBox1.Text = "Search";
textBox1.ForeColor = Color.LightGray;
}
}

private void textBox1_Enter(object sender, EventArgs e)
{
textBox1.Text = string.Empty;
}

关于c# - Windows 窗体中用于实时搜索的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7399105/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com