页面之间的不同导航类型

时间:2018-02-06 19:51:44

标签: c# xaml xamarin xamarin.forms

我正在尝试使用主页面制作应用程序,该主页面是一个普通的内容页面(即没有工具栏),其中有一个通向导航页面的按钮(带工具栏)。我正努力寻找任何资源来帮助我解决这个具体案例。

我尝试了以下内容。在我的<template> <div class="hello"> <router-link to="/"><font-awesome-icon :icon="icon" />Documentation</router-link> </div> </template> <script> import FontAwesomeIcon from '@fortawesome/vue-fontawesome' import faBook from '@fortawesome/fontawesome-free-solid/faBook' export default { name: 'hello', components:{ 'font-awesome-icon' : FontAwesomeIcon }, computed:{ icon(){ return faBook; } } } </script>

App.xaml

以上是public partial class App : Application { public App () { InitializeComponent(); MainPage = new App5.MainPage(); Pallets = new NavigationPage(new Pallets()); //Error: 'Pallets' is a type but is used like a variable } ... } 上的错误。我可以更改Pallets的托盘并使用导航页面编写整个应用程序,我现在会这样做,但我不愿意这样做。

在我的MainPage中,我试图在点击按钮时切换视图:

MainPage.xaml.cs

我见过this等示例,其中包含导航页面导航页面按钮,但不包括普通内容页面到导航页面按钮。

0 个答案:

没有答案