2 writes to _bottomGripper
PresentationFramework (2)
src\Framework\System\Windows\Controls\Primitives\DataGridRowHeader.cs (2)
602_bottomGripper = GetTemplateChild(BottomHeaderGripperTemplateName) as Thumb; 643_bottomGripper = null;
14 references to _bottomGripper
PresentationFramework (14)
src\Framework\System\Windows\Controls\Primitives\DataGridRowHeader.cs (14)
613if (_bottomGripper != null) 615_bottomGripper.DragStarted += new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 616_bottomGripper.DragDelta += new DragDeltaEventHandler(OnRowHeaderResize); 617_bottomGripper.DragCompleted += new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 618_bottomGripper.MouseDoubleClick += new MouseButtonEventHandler(OnGripperDoubleClicked); 637if (_bottomGripper != null) 639_bottomGripper.DragStarted -= new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 640_bottomGripper.DragDelta -= new DragDeltaEventHandler(OnRowHeaderResize); 641_bottomGripper.DragCompleted -= new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 642_bottomGripper.MouseDoubleClick -= new MouseButtonEventHandler(OnGripperDoubleClicked); 668if (_bottomGripper != null) 673_bottomGripper.Visibility = Visibility.Visible; 677_bottomGripper.Visibility = Visibility.Collapsed; 713return (gripper == _bottomGripper) ? this.ParentRow : PreviousRow;