I have a flipView which has a Grid inside. Is there any way to find the grid as child of flipView item?
I have tried using FlipView.FindChild(). But it returns null value. This is the sample xaml code,
<FlipView>
<FlipView.ItemTemplate>
<DataTemplate x:DataType = "data:SampleData">
<Grid x:Name="SampleGrid">
===Sample Code====
</Grid>
</DataTemplate>
</FlipView.ItemTemplate>
</FlipView>
For your scenario, it is recommended to use VisualTreeHelper to find the button in the Grid.
Update