// Token: 0x060060BA RID: 24762 RVA: 0x001B1AD0 File Offset: 0x001AFCD0
        private static void OnIsDraggingPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Thumb thumb = (Thumb)d;

            thumb.OnDraggingChanged(e);
            thumb.UpdateVisualState();
        }
Example #2
0
        /// <summary>
        /// IsFocusedProperty property changed handler.
        /// </summary>
        /// <param name="d">Thumb that changed IsFocused.</param>
        /// <param name="e">DependencyPropertyChangedEventArgs.</param>
        private static void OnIsFocusedPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Thumb t = d as Thumb;

            Debug.Assert(t != null);

            if (t.ElementRoot != null)
            {
                t.UpdateVisualState(true);
            }
        }