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)
606
if (
_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);
630
if (
_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);
661
if (
_bottomGripper
!= null)
666
_bottomGripper
.Visibility = Visibility.Visible;
670
_bottomGripper
.Visibility = Visibility.Collapsed;
706
return (gripper ==
_bottomGripper
) ? this.ParentRow : PreviousRow;