I'm pretty new in develop for windows store app and I'm looking ofr a way to create a loop (foreach loop is the best for me) that will retrieve all the text boxes in the app (Which are in the xaml doc). I belive that it should look something like :
foreach(TextBox t in something)
doAmazingThing();
My questuin is how the foreach loop
should look like?