I just can not find how to generate a click event for the 3-dots-button of the application bar. the start mode of it is minimized and opacity is 0. I want to change the opacity to 1 the use has clicked the three dots button to expand the bar. like so:
if (ApplicationBar.Mode == ApplicationBarMode.Default)
{
ApplicationBar.Opacity = 1;
}
else {
ApplicationBar.Opacity = 0;
}