在 Xamarin.Forms shell 菜单中设置默认页面
Setting a default page in the Xamarin.Forms shell menu
使用 Xaminals 示例,我正在尝试设置默认启动页面。这是来自 xaml:
的相关代码
<FlyoutItem Route="animals" x:Name="shellAnimals"
Title="Animals"
FlyoutDisplayOptions="AsMultipleItems">
<Tab Title="Domestic" x:Name="shellDomestic"
Route="domestic"
Icon="paw.png">
<ShellContent Route="cats" x:Name="shellCats"
Style="{StaticResource DomesticShell}"
Title="Cats"
Icon="cat.png"
ContentTemplate="{DataTemplate views:CatsPage}" />
<ShellContent Route="dogs" x:Name="shellDogs"
Style="{StaticResource DomesticShell}"
Title="Dogs"
Icon="dog.png"
ContentTemplate="{DataTemplate views:DogsPage}" />
</Tab>
<ShellContent Route="monkeys" x:Name="shellMonkeys"
Style="{StaticResource MonkeysShell}"
Title="Monkeys"
Icon="monkey.png"
ContentTemplate="{DataTemplate views:MonkeysPage}" />
<ShellContent Route="elephants" x:Name="shellElephants"
Style="{StaticResource ElephantsShell}"
Title="Elephants"
Icon="elephant.png"
ContentTemplate="{DataTemplate views:ElephantsPage}" />
<ShellContent Route="bears" x:Name="shellBears"
Style="{StaticResource BearsShell}"
Title="Bears"
Icon="bear.png"
ContentTemplate="{DataTemplate views:BearsPage}" />
</FlyoutItem>
在后面的代码中我可以成功设置默认启动页
例如,狗页面:
shellAnimals.CurrentItem.CurrentItem = shellDogs;
但是在熊页面上:
// This works, but I don't like the indexing. Will give trouble on dynamic menu's
shellAnimals.CurrentItem = shellAnimals.Items[3];
// This doesn't work, but I don't understand why. It gives a null reference exception in the Xamarin Shell code, on the PushAsync
shellAnimals.CurrentItem = shellBears;
// This shows the bears page at startup, but when I click on an item in the listview, I also get a null reference error
CurrentItem = shellBears;
- 为什么 second/third 代码段不起作用?
- 如何在不使用索引器的情况下将默认页面设置为熊页面?
除 外找不到关于此主题的任何内容,但没有回答。
您可以根据文档 Set-the-current-flyoutitem 在 XAML 中设置当前页面。这意味着您的 Shell
标签,您将添加 `CurrentItem="{x:Reference shellBears}"1.
此外,我在您的第二个代码片段后面看到,与您所说的有效的狗示例相比,您还缺少另一个 .CurrentItem
步骤。你能试试shellAnimals.CurrentItem.CurrentItem = shellBears;
Why doesn't the second/third snippet work?
第二个片段:
shellAnimals.CurrentItem
是一个类型为 ShellSection
的变量,而您的 shellBears 是一种 ShellContent
.
第三个片段:
当你在shell class中直接使用CurrentItem
时,就是Shell.CurrentItem
并且是一个ShellItem
.
How can I set the default page to the bears page without using the
indexer?
在你的 Xaml:
<ShellSection x:Name="shellBears" Title="Bears"
Icon="bear.png">
<ShellContent Route="bears"
Style="{StaticResource BearsShell}"
ContentTemplate="{DataTemplate views:BearsPage}" />
</ShellSection >
在后面的代码中:
shellAnimals.CurrentItem = shellBears;
使用 Xaminals 示例,我正在尝试设置默认启动页面。这是来自 xaml:
的相关代码<FlyoutItem Route="animals" x:Name="shellAnimals"
Title="Animals"
FlyoutDisplayOptions="AsMultipleItems">
<Tab Title="Domestic" x:Name="shellDomestic"
Route="domestic"
Icon="paw.png">
<ShellContent Route="cats" x:Name="shellCats"
Style="{StaticResource DomesticShell}"
Title="Cats"
Icon="cat.png"
ContentTemplate="{DataTemplate views:CatsPage}" />
<ShellContent Route="dogs" x:Name="shellDogs"
Style="{StaticResource DomesticShell}"
Title="Dogs"
Icon="dog.png"
ContentTemplate="{DataTemplate views:DogsPage}" />
</Tab>
<ShellContent Route="monkeys" x:Name="shellMonkeys"
Style="{StaticResource MonkeysShell}"
Title="Monkeys"
Icon="monkey.png"
ContentTemplate="{DataTemplate views:MonkeysPage}" />
<ShellContent Route="elephants" x:Name="shellElephants"
Style="{StaticResource ElephantsShell}"
Title="Elephants"
Icon="elephant.png"
ContentTemplate="{DataTemplate views:ElephantsPage}" />
<ShellContent Route="bears" x:Name="shellBears"
Style="{StaticResource BearsShell}"
Title="Bears"
Icon="bear.png"
ContentTemplate="{DataTemplate views:BearsPage}" />
</FlyoutItem>
在后面的代码中我可以成功设置默认启动页
例如,狗页面:
shellAnimals.CurrentItem.CurrentItem = shellDogs;
但是在熊页面上:
// This works, but I don't like the indexing. Will give trouble on dynamic menu's
shellAnimals.CurrentItem = shellAnimals.Items[3];
// This doesn't work, but I don't understand why. It gives a null reference exception in the Xamarin Shell code, on the PushAsync
shellAnimals.CurrentItem = shellBears;
// This shows the bears page at startup, but when I click on an item in the listview, I also get a null reference error
CurrentItem = shellBears;
- 为什么 second/third 代码段不起作用?
- 如何在不使用索引器的情况下将默认页面设置为熊页面?
除
您可以根据文档 Set-the-current-flyoutitem 在 XAML 中设置当前页面。这意味着您的 Shell
标签,您将添加 `CurrentItem="{x:Reference shellBears}"1.
此外,我在您的第二个代码片段后面看到,与您所说的有效的狗示例相比,您还缺少另一个 .CurrentItem
步骤。你能试试shellAnimals.CurrentItem.CurrentItem = shellBears;
Why doesn't the second/third snippet work?
第二个片段:
shellAnimals.CurrentItem
是一个类型为 ShellSection
的变量,而您的 shellBears 是一种 ShellContent
.
第三个片段:
当你在shell class中直接使用CurrentItem
时,就是Shell.CurrentItem
并且是一个ShellItem
.
How can I set the default page to the bears page without using the indexer?
在你的 Xaml:
<ShellSection x:Name="shellBears" Title="Bears"
Icon="bear.png">
<ShellContent Route="bears"
Style="{StaticResource BearsShell}"
ContentTemplate="{DataTemplate views:BearsPage}" />
</ShellSection >
在后面的代码中:
shellAnimals.CurrentItem = shellBears;