多个文本框上的占位符



我正在使用以下函数在文本框上创建占位符效果,并且工作正常。

现在,我想在多个文本框上使用它。由于我只有一个盒子,因此placeholder变量就足够了。有了多个盒子,我需要多个占位符。有没有办法将自定义属性添加到文本框中,以便我可以从占位符函数中访问它?

public MainForm()
{
    InitializeComponent();
    Placeholder_Show(DomainBox, null);
}
public static string placeholder = "example.com";
private void Placeholder_Hide(object sender, EventArgs e)
{
    var box = sender as TextBox;
    if (box.Text == placeholder)
    {
        box.Text = "";
        box.ForeColor = Color.Black;
        box.Font = new Font("Segoe UI", 10.2F, FontStyle.Regular);
    }
}
private void Placeholder_Show(object sender, EventArgs e)
{
    var box = sender as TextBox;
    if (string.IsNullOrEmpty(box.Text))
    {
        box.Text = placeholder;
        box.ForeColor = Color.Gray;
        box.Font = new Font("Segoe UI", 10.2F, FontStyle.Italic);
    }
}

所需的代码(示例(:

textBox1.placeholder = "some";
textBox2.placeholder = "string";
private void Placeholder_Hide(object sender, EventArgs e)
{
    var box = sender as TextBox;
    if (box.Text == box.placeholder) // placeholders are associated with boxes
    {
        box.Text = "";
        box.ForeColor = Color.Black;
        box.Font = new Font("Segoe UI", 10.2F, FontStyle.Regular);
    }
}
private void Placeholder_Show(object sender, EventArgs e)
{
    var box = sender as TextBox;
    if (string.IsNullOrEmpty(box.Text))
    {
        box.Text = box.placeholder;
        box.ForeColor = Color.Gray;
        box.Font = new Font("Segoe UI", 10.2F, FontStyle.Italic);
    }
}

我对C#不太熟悉。也许有一种更好的方法来处理此问题。

如注释中所述,您可以子类Textbox并添加该功能。这通常是最好的选择,但是如果您想使用几种无关的调整,该怎么办?另一个选择是以与ErrorProvider相似的方式实施。您会注意到,此组件将属性添加到表单上的其他控件中。这是通过扩展提供商完成的。

经过一些研究,我注意到您可以创建自定义控件。我决定创建一个具有占位符效果的自定义文本框,因此下次我不必打扰这样的东西。

添加了一个新的类文件:CustomControls.cs

using System;
using System.Drawing;
using System.Windows.Forms;
namespace CustomControls
{
    public class CustomTextBox : TextBox
    {
        private string _placeholder;
        public string Placeholder
        {
            get { return this._placeholder; }
            set {
                this._placeholder = value;
                this.Placeholder_Show(null, null);
            }
        }
        public CustomTextBox()
        {
            Initialize();
        }
        private void Initialize()
        {
            this.Enter += new EventHandler(this.Placeholder_Hide);
            this.Leave += new EventHandler(this.Placeholder_Show);
        }
        private void Placeholder_Hide(object sender, EventArgs e)
        {
            if (this.Text == this._placeholder)
            {
                this.Text = "";
                this.ForeColor = Color.Black;
                this.Font = new Font("Segoe UI", 10.2F, FontStyle.Regular);
            }
        }
        private void Placeholder_Show(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(this.Text))
            {
                this.Text = this._placeholder;
                this.ForeColor = Color.Gray;
                this.Font = new Font("Segoe UI", 10.2F, FontStyle.Italic);
            }
        }
    }
}

编辑了Designer文件:MainForm.Designer.cs(不想创建一个新的文本框(

更改

this.DomainBox = new System.Windows.Forms.TextBox();

进入

this.DomainBox = new CustomControls.CustomTextBox();

现在,此新的CustomTextBox出现在工具箱中,名称为" [namespace]组件",顶部为" [名称空间]组件"。您可以拖动&以相同的方式将其丢弃。另外,您可以在" Misc"名称下的属性窗口中访问Placeholder属性。

相关内容

  • 没有找到相关文章

最新更新