2 writes to _bottomGripper
PresentationFramework (2)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (2)
595_bottomGripper = GetTemplateChild(BottomHeaderGripperTemplateName) as Thumb; 636_bottomGripper = null;
14 references to _bottomGripper
PresentationFramework (14)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (14)
606if (_bottomGripper != null) 608_bottomGripper.DragStarted += new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 609_bottomGripper.DragDelta += new DragDeltaEventHandler(OnRowHeaderResize); 610_bottomGripper.DragCompleted += new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 611_bottomGripper.MouseDoubleClick += new MouseButtonEventHandler(OnGripperDoubleClicked); 630if (_bottomGripper != null) 632_bottomGripper.DragStarted -= new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 633_bottomGripper.DragDelta -= new DragDeltaEventHandler(OnRowHeaderResize); 634_bottomGripper.DragCompleted -= new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 635_bottomGripper.MouseDoubleClick -= new MouseButtonEventHandler(OnGripperDoubleClicked); 661if (_bottomGripper != null) 666_bottomGripper.Visibility = Visibility.Visible; 670_bottomGripper.Visibility = Visibility.Collapsed; 706return (gripper == _bottomGripper) ? this.ParentRow : PreviousRow;