有没有办法在毛伊岛放置一个按钮来打开 Flyout

Is there a way to put a button to open the Flyout in Maui

我正在制作移动和 PC 应用程序,我想添加一个按钮来打开弹出窗口,因为我不喜欢顶角 windows 上的按钮,与 android 相同你必须滑动的地方。所以我想知道是否有办法添加一个按钮并禁用当前打开它的方式。

谢谢

使用按钮打开 FLyout。

  private void Button_Clicked(object sender, EventArgs e)
{

    Shell.Current.FlyoutIsPresented = true;
}

要隐藏栏,请在页面上 xaml 的顶部

Shell.NavBarIsVisible="False"