如何在我的xaml文件中修复“值不能为空”?

时间:2019-11-05 23:31:41

标签: xamarin.forms

我正在尝试将外壳布局添加到现有Xamarin.Forms应用程序中,但是在我的xaml文件中不断收到错误“值不能为空”和“参数名称:类型”。

<?xml version="1.0" encoding="utf-8" ?>
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:d="http://xamarin.com/schemas/2014/forms/design"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             mc:Ignorable="d"
             xmlns:views="clr-namespace:Dialler1.Views"
             x:Class="Dialler1.Views.AppShell">
    <TabBar>
        <Tab Title="Home" Icon="ic_action_home.png">
            <ShellContent>
                <views:HomePage />
            </ShellContent>
        </Tab>

        <Tab Title="Contacts" Icon="ic_action_people.png">
            <ShellContent>
                <views:Options />
            </ShellContent>
        </Tab>

    </TabBar>

</Shell>

我希望该应用程序能够完美运行,而不会出现错误消息。

0 个答案:

没有答案