是否可以在 Windows Phone 应用程序中按名称搜索控件?我知道在用 c# 编写的普通桌面应用程序中是可能的:
string s = "label2";
Control[] controls = this.Controls.Find(s, false);
if (controls.Length > 0)
{
Label found = controls[0] as Label;
if (found != null) found.Text = "new label2 text";
}
在 Windows Phone 应用程序中,“this.Controls”无法识别...