繁体   English   中英

为什么我在设置本地 XML 命名空间后没有得到我项目中页面的智能感知建议

[英]Why dont't I get the intellisense suggestions for the pages in my project after setting up the local XML namespace

我试图创建一个类似于 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>时获得智能感知建议,Profile 是我想添加到我的标签页的页面。 对不起,如果我的术语不正确,应该是。 我是编程新手。

提前致谢。

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM