我在开发Windows应用商店时非常新,我正在寻找一种创建循环的方法(foreach循环对我来说最好),它将检索应用中的所有文本框(哪些是在xaml doc中。我相信它应该看起来像:
foreach(TextBox t in something)
doAmazingThing();
我的问题是foreach loop
应该是什么样的?
答案 0 :(得分:0)
foreach (Control item in this.Controls)
{
if (item is TextBox)
doAmazingThing();
}