// 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(); }
/// <summary> /// IsDraggingProperty property changed handler. /// </summary> /// <param name="d">Thumb that changed IsDragging.</param> /// <param name="e">DependencyPropertyChangedEventArgs.</param> private static void OnIsDraggingPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { Thumb thumb = d as Thumb; Debug.Assert(thumb != null); thumb.OnDraggingChanged(); }