Assigning event TextChanged to all textboxes in Form(将事件 TextChanged 分配给表单中的所有文本框)
问题描述
您好,我想知道如何查看 Form 中的所有 textboxes
是否有任何更改值.我看到了一些代码 这里
Hello I was wondering how can I keep an eye on all textboxes
in Form whether in any of them was changed value. I saw some code here
private void Form1_Load(object sender, EventArgs e)
{
foreach (Control ctrl in this.Controls)
{
if (ctrl is TextBox)
{
TextBox tb = (TextBox)ctrl;
tb.TextChanged += new EventHandler(tb_TextChanged);
}
}
}
void tb_TextChanged(object sender, EventArgs e)
{
TextBox tb = (TextBox)sender;
tb.Tag = "CHANGED"; // or whatever
}
编写此代码的人说它不能分配给 Panels 和 Grouboxes 中的文本框".
And a guy who wrote this code says that "it can't be assigned to textboxes in Panels and Grouboxes".
所以我的问题是,因为我在组框或面板中几乎有每个文本框,我如何才能查看是否对面板或组框中的文本框进行了更改?
So my question is as I have almost every textbox in groubox or panel, how can I see whether change was made for textboxes in panels or groupbox?
推荐答案
你可以让你的方法递归:
You can make your method recursive:
private void Form1_Load(object sender, EventArgs e)
{
Assign(this);
}
void Assign(Control control)
{
foreach (Control ctrl in control.Controls)
{
if (ctrl is TextBox)
{
TextBox tb = (TextBox)ctrl;
tb.TextChanged += new EventHandler(tb_TextChanged);
}
else
{
Assign(ctrl);
}
}
}
void tb_TextChanged(object sender, EventArgs e)
{
TextBox tb = (TextBox)sender;
tb.Tag = "CHANGED"; // or whatever
}
只需为方法找到一个更好的名称,而不是 Assign
.
Just find a better name for the method instead of Assign
.
这篇关于将事件 TextChanged 分配给表单中的所有文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将事件 TextChanged 分配给表单中的所有文本框
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 使用 rss + c# 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01