BindableApplicationBar.BindableApplicationBar.OnIsVisibleChanged C# (CSharp) Method

OnIsVisibleChanged() private static method

Handles changes to the IsVisible property.
private static OnIsVisibleChanged ( 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 OnIsVisibleChanged(
            DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            BindableApplicationBar target = (BindableApplicationBar)d;
            bool oldIsVisible = (bool)e.OldValue;
            bool newIsVisible = target.IsVisible;
            target.OnIsVisibleChanged(oldIsVisible, newIsVisible);
        }

Same methods

BindableApplicationBar::OnIsVisibleChanged ( bool oldIsVisible, bool newIsVisible ) : void