OnMajorTickMarkStylePropertyChanged() private static method

MajorTickMarkStyleProperty property changed handler.
private static OnMajorTickMarkStylePropertyChanged ( DependencyObject d, DependencyPropertyChangedEventArgs e ) : void
d DependencyObject DisplayAxis that changed its MajorTickMarkStyle.
e DependencyPropertyChangedEventArgs Event arguments.
return void
        /// <summary>
        /// MajorTickMarkStyleProperty property changed handler.
        /// </summary>
        /// <param name="d">DisplayAxis that changed its MajorTickMarkStyle.</param>
        /// <param name="e">Event arguments.</param>
        private static void OnMajorTickMarkStylePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            DisplayAxis source   = (DisplayAxis)d;
            Style       oldValue = (Style)e.OldValue;
            Style       newValue = (Style)e.NewValue;

            source.OnMajorTickMarkStylePropertyChanged(oldValue, newValue);
        }