我有一个简单的问题(希望如此)。我需要崩溃(或做一些 其他形式/框架中的对象(儿童或其他) 父母)但我不知道该怎么做。我很高兴提到我 开发Windows Universal Apps。而且我还需要从中加载帧 其他框架到其他框架...
我喜欢让你理解它非常简单容易 为什么我想展示一个非常简单的例子我的意思。
对不起我的英语,不是我的母语。
第一页XAML
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0">
<Button Content="LoadFrame" Click="Button_Click"/>
<Button x:Name="KillMeOne" Content="Kill Me From Frame Two"/>
</StackPanel>
<Frame x:Name="TheSecondFrame" Grid.Row="1"/>
<Frame x:Name="FrameThreeComesHere" Grid.Row="2"/>
</Grid>
第二页XAML
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<StackPanel>
<Button Content="Load Frame Three From Here Form In 'FrameThreeComesHere-frame' But How?"/>
<Button Content="Kill The Button From Page One But How?"/>
</StackPanel>
</Grid>
第三页XAML
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<TextBlock Text="HelloWord!"/>
</Grid>
第一页CS代码......
private void Button_Click(object sender, RoutedEventArgs e)
{
TheSecondFrame.Navigate(typeof(PageTwo));
}
答案 0 :(得分:0)
为第1页创建数据上下文,将要隐藏的元素的可见性绑定到数据上下文的属性。然后从第2页获取第1页的数据上下文,更改属性以更改第1页上元素的可见性。