2017-06-14 97 views
-1

我想顯示漢堡包按鈕的彈出窗口...就像它發生在Windows 10註銷中一樣(請參見圖片)。顯示來自漢堡包按鈕的彈出窗口

這是可能的?!?

enter image description here


傑西卡感謝您的答覆,但在我的代碼,我可以把你的!?!

<Controls:HamburgerButtonInfo x:Name="LogoutButton" PageParameter="0" ButtonType="Command" Tapped="LogoutButton_Tapped"> 
    <Controls:HamburgerButtonInfo.NavigationTransitionInfo> 
     <SuppressNavigationTransitionInfo /> 
    </Controls:HamburgerButtonInfo.NavigationTransitionInfo> 
    <StackPanel Orientation="Horizontal"> 
     <ToolTipService.ToolTip> 
      <TextBlock Text="Logout" x:Uid="logout_ToolTipService" TextWrapping="Wrap" /> 
     </ToolTipService.ToolTip> 
     <SymbolIcon Width="48" Height="48" Symbol="Contact" /> 
     <TextBlock Margin="12,0,0,0" Name="textBlock_LogoutButton" x:Uid="textBlock_LogoutButton" VerticalAlignment="Center" Text="Logout" /> 
    </StackPanel> 
</Controls:HamburgerButtonInfo> 
+0

你可以把'MenuFlyout'上的任何按鈕更不用說漢堡按鈕。 – AVK

+0

對不起,但我不明白你是什麼意思! – Blasco73

+0

...爲什麼downvote? – Blasco73

回答

0
<Button> 
    <FontIcon FontFamily="Segoe MDL2 Assets" Glyph="&#xE700;" /> 
    <Button.Flyout> 
     <MenuFlyout> 
      <MenuFlyoutItem Text="Some text"/> 
      <ToggleMenuFlyoutItem Text="Some text 2"/> 
      <ToggleMenuFlyoutItem Text="Some text 3"/> 
     </MenuFlyout> 
    </Button.Flyout> 
</Button>