本文介绍了使用C#在数据列表中查找控件,但是如何的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好
谁能在c#
中翻译以下内容

hi all
can any one translate following in c#

foreach (DataListItem item in myDataList.Items)
{
    Label myTempLabel = (Label)item.FindControl("myLabel");

    // Do what you need to with this label
    myTempLabel.Visible = false;
}



感谢



thanks

推荐答案


这篇关于使用C#在数据列表中查找控件,但是如何的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 16:15