私の質問は明確で短いと思います。アプリケーションバーアイコンボタンでアプリケーションバーを開くにはどうすればよいですか?
ご存知のように、アプリケーション バーは次のように使用します。
<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」をクリックしたときに何かをトリガーまたは実行する必要があります。私はそれでメニューを開く必要があります。アプリケーション バーに 3 つのドット アイコンがあることは知っていますが、そのアイコンでアプリケーション バーの [マイ メニュー] を開きたいと思います。
どうすればそれを処理できますか? それについて私を助けてください。
どうもありがとうございました。