如何遍历winform窗体中的所有控件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何遍历winform窗体中的所有控件相关的知识,希望对你有一定的参考价值。
本文实例讲述了WinForm遍历窗体所有子控件的方法。分享给大家供大家参考,具体如下:///
<summary>
///
C#
只遍历控件子控件,不遍历孙控件
///当控件有子控件时,需要用递归的方法遍历,才能全部列出控件上的控件
///
</summary>
///
<typeparam
name="T">控件类型</typeparam>
///
<param
name="control">要遍历的控件</param>
///
<param
name="controlsName">控件名</param>
///
<returns></returns>
public
static
T
GetControl<T>(Control
control,
string
controlsName)
where
T
:
Control
if
(control
==
null)
return
null;
Control
_control;
for
(int
i
=
0;
i
<
control.Controls.Count;
i++)
_control
=
control.Controls[i]; 参考技术A private
void
getcontrol(control.controlcollection
ctc)
foreach
(control
ct
in
ctc)
//c#
只遍历窗体的子控件,不遍历孙控件
//当窗体上的控件有子控件时,需要用递归的方法遍历,才能全部列出窗体上的控件
if
(ct.haschildren)
getcontrol(ct.controls);
参考技术B 要用递归啊,楼上都是来混分的
//
伪代码
如下
void
EnumControls(Control
container
)
foreach(var
c
in
container.Controls)
//c
is
the
child
control
here
EnumControls(c);
//调用
EnumControls(this);
winform 父窗体如何获取子窗体控件的值
父窗体f1
打开子窗体f2,然后传"1"给f2的lable1
再次打开新的f2,然后传"2"给f2的lable1
.....
如何遍历f1打开的所有f2,找到lable1值为"2"的f2
然后把"2"改成"a"
然后再点一个按钮遍历 这个ArrayList 找到你所需要的.
按照你举的例子,代码如下:
using System.Collections;
public partial class Form1 : Form
int i;
public Form1()
i = 1;
InitializeComponent();
ArrayList list = new ArrayList();
private void button1_Click(object sender, EventArgs e)
Form2 f2 = new Form2();
((TextBox)f2.Controls["txt"]).Text = i.ToString();
i++;
f2.Show();
list.Add(f2);
private void button2_Click(object sender, EventArgs e)
foreach (Form f in list)
if (((TextBox)f.Controls["txt"]).Text == "2")
((TextBox)f.Controls["txt"]).Text = "a";
本回答被提问者采纳
以上是关于如何遍历winform窗体中的所有控件的主要内容,如果未能解决你的问题,请参考以下文章