我无法访问控件,例如驻留在页面OnLoadState
方法中的hubsections中的文本框。
我想在加载页面时设置文本框的TEXT
属性。但是如果没有访问权限,我就无法访问。
答案 0 :(得分:0)
请尝试Loaded
:
<HubSection Header="Trailers">
<DataTemplate>
<TextBox Loaded="TextBox_Loaded" />
</DataTemplate>
</HubSection>
然后设置如下的值:
private void TextBox_Loaded(object sender, RoutedEventArgs e)
{
var txtBox = (TextBox)sender;
txtBox.Text = "Some Text";
}
从here复制。