wpf - is it possible to list all xaml image tags in c#? -
is there way list of xaml tags (or other tag) in c# in windows phone without giving them names?
something :
var list = this.getelementsbytagname("image");
you this.
foreach(uielement item in yourcontainer.children){ messagebox.show(item.gettype().tostring()); }
it return system.window.control.image
Comments
Post a Comment