您的位置:首页 > 其它

Winform中通过一个字符串定位到和字符串相等ID的控件(将字符串转换成相应的控件名称

2010-09-24 00:00 423 查看
方法一:

朋友说的方法倒能够实现,但如果控件很多,而且每次都要动态判断,性能方面就回受到很大影响,这也不时为一个办法.



string
controlName
=

"
控 件名称
"
;



foreach
(control con
in
父容 器.Controls)

{
if (con.Name == controlName)
{
///找到控件了;
///然后将其拆箱,就OK了.
}
}

上面的方法如果在一个窗体里面查找某个控件则父容器就是this如下,如果是其他容器控件则为某容器的ID.

Control.ControlCollection controls
=

this
.Controls;

foreach
(Control myControl
in
controls)

{
if (myControl.Name == "radioButton1")
{
RadioButton radBtn = (RadioButton)myControl;
radBtn.Checked = true;
}
}

方法二:

CSDN朋友帮助:



string
str
=

"
button
"

+

"
1
"
;





//
必须已经有button1控件否则会出错



Button btn1
=
(Button)
this
.Controls.Find(str,
true
)[

];





if
(btn1
==
button1)


MessageBox.Show(btn1.Text);

其实通过上面的转换btn1和button1是同一个控件了,其他容器控件也有同样的Find方法,这样也不错..

其他更好的方法有待进一步研究...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐