导航菜单为空

时间:2019-02-06 15:25:21

标签: c# xamarin syncfusion

我当前正在测试syncfusion的导航抽屉,我在这里遵循教程https://help.syncfusion.com/xamarin/sfnavigationdrawer/getting-started?cs-save-lang=1&cs-lang=csharp,当导航被加载时,它是空的。请问我要怎么做?

我已将xaml代码复制到我的xaml页面上,并将c#复制到了后面。它可以很好地编译并显示在下面。

enter image description here enter image description here

教程中的代码

MainPage.xaml

<navigationdrawer:SfNavigationDrawer x:Name="navigationDrawer" DrawerWidth ="200" DrawerHeaderHeight="160">
    <navigationdrawer:SfNavigationDrawer.DrawerContentView>
        <ListView x:Name="listView">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <ViewCell>
                        <StackLayout HeightRequest="40">
                            <Label Margin="10,7,0,0" Text="TEST" FontSize="16"/>
                        </StackLayout>
                    </ViewCell>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
    </navigationdrawer:SfNavigationDrawer.DrawerContentView>
</navigationdrawer:SfNavigationDrawer>

MainPage.xaml.cs

public MainPage()

{
    InitializeComponent();
    navigationDrawer.DrawerWidth = 200;
    List<string> list = new List<string>();
    list.Add("Home");
    list.Add("Profile");
    list.Add("Inbox");
    list.Add("Out box");
    list.Add("Sent");
    list.Add("Draft");
    listView.ItemsSource = list;
}

1 个答案:

答案 0 :(得分:1)

带有Xamarin.forms 3.5.0.129452的版本16.4.0.52显示空白内容,并随着Xamarin.forms 3.4.0.1029999崩溃。

Xamarin.forms 3.5.0.129452导致版本16.4.0.48崩溃。

唯一适用于我的组合是带有Xamarin.forms 3.4.0.1029999的16.4.0.48。