方法一:
朋友说的方法倒能够实现,但如果控件很多,而且每次都要动态判断,性能方面就回受到很大影响,这也不时为一个办法.
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;
}
}
foreach (Control myControl in controls)
{
if (myControl.Name == "radioButton1")
{
RadioButton radBtn = (RadioButton)myControl;
radBtn.Checked = true;
}
}
方法二:
优快云朋友帮助:
string str = "button" + "1";
//必须已经有button1控件否则会出错
Button btn1 = (Button)this.Controls.Find(str, true)[0];
if (btn1 == button1)
MessageBox.Show(btn1.Text);其实通过上面的转换btn1和button1是同一个控件了,其他容器控件也有同样的Find方法,这样也不错..
其他更好的方法有待进一步研究...
本文介绍了两种在Winform中通过字符串找到对应ID控件的方法,包括利用父容器的Find方法和直接转换字符串。这些方法在处理大量控件时可能会对性能产生影响,但对于特定情况是有效的解决方案。
3438

被折叠的 条评论
为什么被折叠?



