BindableApplicationBar.BindableApplicationBar.OnBindableOpacityChanged C# (CSharp) Method

OnBindableOpacityChanged() private static method

Handles changes to the BindableOpacity property.
private static OnBindableOpacityChanged ( 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 OnBindableOpacityChanged(
            DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            BindableApplicationBar target = (BindableApplicationBar)d;
            double oldBindableOpacity = (double)e.OldValue;
            double newBindableOpacity = target.BindableOpacity;
            target.OnBindableOpacityChanged(
                oldBindableOpacity, newBindableOpacity);
        }

Same methods

BindableApplicationBar::OnBindableOpacityChanged ( double oldBindableOpacity, double newBindableOpacity ) : void