gpt4 book ai didi

c# - 如何打开新页面?

转载 作者:太空宇宙 更新时间:2023-11-03 13:42:56 26 4
gpt4 key购买 nike

我试图到处研究,但我得到的只是如何打开关闭的表格。我正在制作 XAML Windows 8 C# 应用程序,我需要它通过单击 MainPage.xaml 中的按钮来显示 Menu.xaml

这是按钮:

<Button Content="Agree" HorizontalAlignment="Left" Margin="340,506,0,0"    VerticalAlignment="Top" Height="46" Width="392" Click="Button_Click_1"/>

这是当我在设计模式下双击按钮时 Visual Studio 在 MainPage.xaml.cs 中生成的代码

private void Button_Click_1(object sender, RoutedEventArgs e)
{

}

最佳答案

与允许您仅向屏幕添加用户控件和窗口的普通 WPF 应用程序不同,Marketplace 应用程序(我假设您正在谈论)需要您在 XAML 页面之间“导航”。这是您需要的程序概要 http://www.markermetro.com/2011/11/technical/windows-8-metro-style-apps-implementing-navigation-with-xaml/

这是一个基本示例,但您应该阅读链接

       void Button_Click_1(object sender, RoutedEventArgs e)
{
Frame.Navigate(typeof(AboutView).FullName);
}

关于c# - 如何打开新页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16359283/

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