gpt4 book ai didi

c# - Windows 应用商店应用程序 frame.navigate() 不工作

转载 作者:行者123 更新时间:2023-11-30 18:26:35 25 4
gpt4 key购买 nike

所以,基本上我有 2 个页面:“MainPage.xaml”和“Workpage.xaml”。我创建了一个用于从 MainPage 导航到 WorkPage 的按钮,但它不起作用……为什么会这样?它在我的 Windows Phone 应用程序中正常工作...

<Page
x:Class="WindowsApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WindowsApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Button x:Name="btnWorkPage" Content="Button" HorizontalAlignment="Left" Margin="580,304,0,0" VerticalAlignment="Top" Height="74" Width="208" Click="btnWorkPage_Click"/>
</Grid>

主页.xaml.cs:

public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();

}

private void btnWorkPage_Click(object sender, RoutedEventArgs e)
{
Frame.Navigate(typeof(WorkPage));
}
}

一个简短的演示:http://screencast.com/t/imblOyj5CH ...

最佳答案

好吧,似乎有一些奇怪的逻辑,你必须删除 MainPage 并添加一个新的,这里是 MS 的一些指南

https://msdn.microsoft.com/en-us/library/windows/apps/hh986965.aspx

关于c# - Windows 应用商店应用程序 frame.navigate() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28387540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com