我在这个选项卡式页面上有3个孩子,正在重排前两个孩子,但没有“ Conversas”子页面。 Visual Studio说找不到,请我检查程序集引用。
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BatePapo;assembly=BatePapo"
x:Class="BatePapo.MainPage" BarBackgroundColor="#FF4383" BarTextColor="WhiteSmoke">
<TabbedPage.Children>
<local:Listar Title="Online" />
<local:Home Title="Definições" />
<local:Conversas Title="Conversas" />
</TabbedPage.Children>
</TabbedPage>
我检查了文件后面的代码,所有文件都具有正确的名称空间,而xaml文件如下:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BatePapo;assembly=BatePapo"
x:Class="BatePapo.Conversas">
所有子页面几乎相等,唯一的区别只是名称。有人可以在这里看到我在做什么吗?