1 回答

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊
您可以在帶有頁(yè)面的漢堡菜單中添加彈出項(xiàng)目,如下代碼所示
public partial class AppShell : Xamarin.Forms.Shell
{
? ? public AppShell()
? ? {
? ? ? ? InitializeComponent();
? ? ? ? ShellSection shell_section = new ShellSection
? ? ? ? {
? ? ? ? ? ? Title = "home",
? ? ? ? };
? ? ? ? shell_section.Items.Add(new ShellContent() { Content = new HomePage() });
? ? ? ? ShellSection shell_section1 = new ShellSection
? ? ? ? {
? ? ? ? ? ? Title = "about",
? ? ? ? };
? ? ? ? shell_section1.Items.Add(new ShellContent() { Content = new AboutPage() });
? ? ? ? myshell.Items.Add(shell_section);
? ? ? ? myshell.Items.Add(shell_section1);
? ? }
}
- 1 回答
- 0 關(guān)注
- 158 瀏覽
添加回答
舉報(bào)