I'm writing app in Windows Phone 8.1 and I want to get access to controls from Code-Behind.
Normally everything works great but when I use hub I don't have access to fields from Code-Behind.
<Hub x:Name="RHub">
<HubSection>
<DataTemplate>
<Grid>
<TextBox x:Name="Test5"/>
</Grid>
</DataTemplate>
</HubSection>
<HubSection>
<DataTemplate>
<Grid>
</Grid>
</DataTemplate>
</HubSection>
</Hub>
And now in Code-Behind file is no such field like Test5, only RHub.
This is because the control is inside a DataTemplate. One easy way to get around this limitation is to hook into the Element Loaded-event. Here’s the XAML:
And the code-behind:
if you want to search any element in the list view you can use a method like:
and search: