我在MyControl.cs中有这段代码:
public static myMethod(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
MyControl control = d as MyControl;
AnotherControl a = control.Findname("blabla") as AnotherControl;
}
问题是代码 control.Findname(“blabla”)返回null,尽管我的usercontrol的XAML中存在名为“blabla”的控件。如何访问它?
通过control.blabla访问它不是解决方案,因为我有名为blabla1,blabla2,blabla3的控件,我必须在循环中修改它们。
编辑:也许在WP7环境中发生的一切都是相关的吗?
答案 0 :(得分:0)