2 writes to _bottomGripper
PresentationFramework (2)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (2)
596_bottomGripper = GetTemplateChild(BottomHeaderGripperTemplateName) as Thumb; 637_bottomGripper = null;
14 references to _bottomGripper
PresentationFramework (14)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (14)
607if (_bottomGripper != null) 609_bottomGripper.DragStarted += new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 610_bottomGripper.DragDelta += new DragDeltaEventHandler(OnRowHeaderResize); 611_bottomGripper.DragCompleted += new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 612_bottomGripper.MouseDoubleClick += new MouseButtonEventHandler(OnGripperDoubleClicked); 631if (_bottomGripper != null) 633_bottomGripper.DragStarted -= new DragStartedEventHandler(OnRowHeaderGripperDragStarted); 634_bottomGripper.DragDelta -= new DragDeltaEventHandler(OnRowHeaderResize); 635_bottomGripper.DragCompleted -= new DragCompletedEventHandler(OnRowHeaderGripperDragCompleted); 636_bottomGripper.MouseDoubleClick -= new MouseButtonEventHandler(OnGripperDoubleClicked); 662if (_bottomGripper != null) 667_bottomGripper.Visibility = Visibility.Visible; 671_bottomGripper.Visibility = Visibility.Collapsed; 707return (gripper == _bottomGripper) ? this.ParentRow : PreviousRow;