我完全是 xamarin 的菜鸟 :)
所以想知道是否有人可以指出我正确的资源。
简而言之,我想使用 Xamarin MasterDetailPage 在 prism 中实现类似的东西。
使用此处的主详细信息示例,汉堡菜单不会作为飞出菜单。
<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
prism:ViewModelLocator.AutowireViewModel="True"
x:Class="HelloWorld.Views.MyMasterDetail">
<MasterDetailPage.Master>
<ContentPage Title="Default">
<StackLayout>
<Button Text="ViewA" Command="{Binding NavigateCommand}" CommandParameter="MyNavigationPage/ViewA?id=A" />
<Button Text="ViewB" Command="{Binding NavigateCommand}" CommandParameter="MyNavigationPage/ViewB?id=B" />
<Button Text="ViewC" Command="{Binding NavigateCommand}" CommandParameter="MyNavigationPage/ViewC?id=C" />
</StackLayout>
</ContentPage>
</MasterDetailPage.Master>
</MasterDetailPage>
现在,虽然有足够的空间,它显示类似
(仅作为示例,我根本没有使用 SplitViewMenu)
我需要图标/一些小文本来显示最初和点击汉堡包,它应该展开(你知道就像第一个链接/凹槽音乐应用程序行为一样)。
提示?