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)
607
if (
_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);
631
if (
_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);
662
if (
_bottomGripper
!= null)
667
_bottomGripper
.Visibility = Visibility.Visible;
671
_bottomGripper
.Visibility = Visibility.Collapsed;
707
return (gripper ==
_bottomGripper
) ? this.ParentRow : PreviousRow;