BindableApplicationBar.BindableApplicationBar.OnIsMenuVisibleChanged C# (CSharp) Method

OnIsMenuVisibleChanged() private static method

Handles changes to the IsMenuVisible property.
private static OnIsMenuVisibleChanged ( DependencyObject d, System.Windows.DependencyPropertyChangedEventArgs e ) : void
d System.Windows.DependencyObject /// The on which /// the property has changed value. ///
e System.Windows.DependencyPropertyChangedEventArgs /// Event data that is issued by any event that /// tracks changes to the effective value of this property. ///
return void
        private static void OnIsMenuVisibleChanged(
            DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            BindableApplicationBar target = (BindableApplicationBar)d;
            bool oldIsMenuVisible = (bool)e.OldValue;
            bool newIsMenuVisible = target.IsMenuVisible;
            target.OnIsMenuVisibleChanged(
                oldIsMenuVisible, newIsMenuVisible);
        }

Same methods

BindableApplicationBar::OnIsMenuVisibleChanged ( bool oldIsMenuVisible, bool newIsMenuVisible ) : void