黑马程序员技术交流社区
标题:
wp7遍历控件问题
[打印本页]
作者:
孟庆波
时间:
2012-3-7 13:56
标题:
wp7遍历控件问题
public Button FindButtonBackgroundWithoutPicture()
{
Button btn = null;
///遍历控件 chilren ,var
foreach (var item in this.ContentPanel.Children)
{
if (item.GetType() == typeof(Button))
{
btn = item as Button;
if (GetBackgroundIndex(btn) == 1)
{
return btn;
}
}
}
return null;
}
ContentPanel是Grid控件的名称
作者:
韩迎龙
时间:
2012-3-12 15:02
就是一个循环啊!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2