2 writes to _bottomGripper
PresentationFramework (2)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (2)
601_bottomGripper = GetTemplateChild(BottomHeaderGripperTemplateName) as Thumb; 642_bottomGripper = null;
14 references to _bottomGripper
PresentationFramework (14)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (14)
612if (_bottomGripper != null) 614_bottomGripper.DragStarted += new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 615_bottomGripper.DragDelta += new DragDeltaEventHandler(OnRowHeaderResize); 616_bottomGripper.DragCompleted += new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 617_bottomGripper.MouseDoubleClick += new MouseButtonEventHandler(OnGripperDoubleClicked); 636if (_bottomGripper != null) 638_bottomGripper.DragStarted -= new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 639_bottomGripper.DragDelta -= new DragDeltaEventHandler(OnRowHeaderResize); 640_bottomGripper.DragCompleted -= new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 641_bottomGripper.MouseDoubleClick -= new MouseButtonEventHandler(OnGripperDoubleClicked); 667if (_bottomGripper != null) 672_bottomGripper.Visibility = Visibility.Visible; 676_bottomGripper.Visibility = Visibility.Collapsed; 712return (gripper == _bottomGripper) ? this.ParentRow : PreviousRow;