如何访问onloadstate方法中驻留在hubsections中的控件

时间:2015-08-23 13:52:52

标签: windows-phone-8.1

我无法访问控件,例如驻留在页面OnLoadState方法中的hubsections中的文本框。

我想在加载页面时设置文本框的TEXT属性。但是如果没有访问权限,我就无法访问。

1 个答案:

答案 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复制。