我认为我的问题很清楚而且很简短。如何使用应用程序栏图标按钮打开应用程序栏?
你知道,我们是这样使用应用程序栏的;
<shell:ApplicationBar x:Name="ApplicationBar1" IsVisible="True" IsMenuEnabled="True" ForegroundColor="SeaShell" BackgroundColor="DarkGreen">
<shell:ApplicationBarIconButton IconUri="Images/appbar_menu.png" Text="Menu" Click="OpenMenu"/>
<shell:ApplicationBarIconButton IconUri="Images/appbar_refresh.png" Text="Live" Click="GetLiveMatchesClick"/>
<shell:ApplicationBarIconButton IconUri="Images/appbar.speakerphone.png" Text="Betting" Click="GetBettingMatchesClick"/>
</shell:ApplicationBar>
您在上面看到,当我单击菜单“ApplicationBarIconButton”时,我需要触发或执行某些操作。我需要用它打开菜单。你知道应用程序栏上有三个点图标,但我想打开我的菜单,我的应用程序栏有那个图标。
我该如何处理?请帮帮我。
非常感谢。