- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已下载并打开 Xamarin.Forms Shell 示例项目 Xanimals来自 Microsoft,但它从 AppShell.xaml 抛出构建错误。
错误是:
错误 XLS0503 无法将“ShellContent”类型的值添加到“IList”类型的集合或字典中。 Xaminals AppShell.xaml 135
错误 XLS0503 无法将“MenuItem”类型的值添加到“IList”类型的集合或字典中。 Xaminals AppShell.xaml 158
无效类型:预期类型为“ShellSection”,实际类型为“ShellContent”。
无效类型:预期类型为“ShellSection”,实际类型为“MenuItem”。
我最初在创建新的 Xamarin Shell 应用程序并遵循 Microsoft 的相应指南时发现了此问题,其中他们的示例代码描述了将一些 ShellContent 元素直接放在应用程序的 AppShell.xaml 文件中的 FlyoutItem 下。
以下是 Microsoft Xanimals 示例项目的相关代码部分:
<FlyoutItem Route="animals"
Title="Animals"
FlyoutDisplayOptions="AsMultipleItems">
<Tab Title="Domestic"
Route="domestic"
Icon="paw.png">
<ShellContent Route="cats"
Style="{StaticResource DomesticShell}"
Title="Cats"
Icon="cat.png"
ContentTemplate="{DataTemplate views:CatsPage}" />
<ShellContent Route="dogs"
Style="{StaticResource DomesticShell}"
Title="Dogs"
Icon="dog.png"
ContentTemplate="{DataTemplate views:DogsPage}" />
</Tab>
<ShellContent Route="monkeys"
Style="{StaticResource MonkeysShell}"
Title="Monkeys"
Icon="monkey.png"
ContentTemplate="{DataTemplate views:MonkeysPage}" />
<ShellContent Route="elephants"
Style="{StaticResource ElephantsShell}"
Title="Elephants"
Icon="elephant.png"
ContentTemplate="{DataTemplate views:ElephantsPage}" />
<ShellContent Route="bears"
Style="{StaticResource BearsShell}"
Title="Bears"
Icon="bear.png"
ContentTemplate="{DataTemplate views:BearsPage}" />
</FlyoutItem>
<ShellContent Route="about"
Style="{StaticResource AboutShell}"
Title="About"
Icon="info.png"
ContentTemplate="{DataTemplate views:AboutPage}" />
<MenuItem Text="Random"
Icon="random.png"
Command="{Binding RandomPageCommand}" />
<MenuItem Text="Help"
Icon="help.png"
Command="{Binding HelpCommand}"
CommandParameter="https://learn.microsoft.com/xamarin/xamarin-forms/app-fundamentals/shell" />
这是上述代码的屏幕截图,其中智能感知强调了问题区域:
作为引用,我尝试将 Xamarin.Forms NuGet 引用更新到 4.0.0.425677 和 4.1.0.673156 之间的每个版本,但仍然没有成功。我使用的是 Visual Studio Professional 2019 版本 16.1.2 和 .NET Framework 版本 4.7.03056
Microsoft 的 Xanimals 示例代码是否错误,或者我遗漏了什么?同样,我直接使用 Xanimals 示例代码,没有任何更改。
编辑:Microsoft 自己的 Shell 示例解释如下:
ShellContent, which represents the ContentPage objects in your application. Every ShellContent object is a child of a Tab object. When more than one ShellContent object is present in a Tab, the objects will be navigable by top tabs.
然而,尽管断言每个 ShellContent 对象都是 Tab 对象的子对象,但他们的代码示例似乎与此规则相矛盾(在屏幕截图中,ShellContent 位于 Tab 之外,还有 FlyoutItem 之外的内容) )。
最佳答案
我也遇到了同样的问题,我尝试了以下方法:
清理解决方案并重建它。
删除 obj
和 bin
文件并重新启动 Visual Studio。
两种方法都会忽略警告并运行它。它可以工作,也许问题稍后会得到解决。
关于Xamarin.Forms Shell - 除非在 <Tab> 内,否则无法使用 ShellContent?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57526840/
我正在尝试导航到“TestView”页面,该页面位于 VisualStudio 解决方案的“Views”文件夹中。这里编译错误。 错误 XFC0000 无法解析类型“:TestView” AppShe
我已下载并打开 Xamarin.Forms Shell 示例项目 Xanimals来自 Microsoft,但它从 AppShell.xaml 抛出构建错误。 错误是: 错误 XLS0503 无法将“
我有一个利用推送通知的应用程序。当应用程序收到背景图像指向作为资源与 xap 捆绑在一起的图像的磁贴通知时,图像会很好地加载到固定磁贴上。此外,我测试了运行应用程序的可能性,该应用程序可以将图像加载到
我是一名优秀的程序员,十分优秀!