-1

我试图创建一个类似于 Instagram 的应用程序,为此我需要使用标签页。问题是当我想使用本地 XML 命名空间将不同的页面添加到我的选项卡式页面时,我收到此错误“找不到类型“本地”。您是否缺少程序集引用并且所有程序集都已构建?“。

我已经像这样将本地 xml 命名空间添加到我的标签页的 xaml 代码中"xmlns:local="cls-namespace:InstagramApp">"

我搜索了谷歌,只发现这个主题有点相关https://forums.xamarin.com/discussion/22762/local-xaml-namespace-in-shared-project但它不能解决我的问题。

我还搜索了stackoverflow,找不到任何相关主题。

这是我正在使用的选项卡式页面的 xmal:

<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="InstagramApp.TabbedPage1"
            xmlns:local="cls-namespace:InstagramApp">

    <local: Profile />
</TabbedPage>

我想要的是在我输入时获得智能感知建议<local: Profile>,个人资料是我想要添加到我的标签页的页面。抱歉,如果我的术语不正确。我是编程新手。

提前致谢。

4

1 回答 1

0

我发现问题出在 xaml 命名空间声明中。我用过 xmlns:local="cls-namespace:InstagramApp">而不是 xmlns:local="clr-namespace:InstagramApp">.

我在 clr 中使用了 s 而不是 r。

于 2018-08-21T23:49:07.670 回答