3 writes to _hitTestedGlyph
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (3)
74
_hitTestedGlyph
= null;
511
_hitTestedGlyph
= newGlyph;
530
_hitTestedGlyph
= null;
28 references to _hitTestedGlyph
System.Windows.Forms.Design (28)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (28)
475
b.OnLoseCapture(
_hitTestedGlyph
, EventArgs.Empty);
504
InvokeMouseEnterLeave(
_hitTestedGlyph
, newGlyph);
513
return (
_hitTestedGlyph
.Behavior is ControlDesigner.TransparentBehavior);
518
InvokeMouseEnterLeave(
_hitTestedGlyph
, null);
541
Behavior? behavior = GetAppropriateBehavior(
_hitTestedGlyph
);
634
g ??=
_hitTestedGlyph
;
658
g ??=
_hitTestedGlyph
;
670
=> GetAppropriateBehavior(
_hitTestedGlyph
)?.OnMouseDoubleClick(
_hitTestedGlyph
, button, mouseLoc) ?? false;
673
=> GetAppropriateBehavior(
_hitTestedGlyph
)?.OnMouseDown(
_hitTestedGlyph
, button, mouseLoc) ?? false;
678
=> GetAppropriateBehavior(
_hitTestedGlyph
)?.OnMouseHover(
_hitTestedGlyph
, mouseLoc) ?? false;
691
return GetAppropriateBehavior(
_hitTestedGlyph
)?.OnMouseMove(
_hitTestedGlyph
, button, mouseLoc) ?? false;
698
return GetAppropriateBehavior(
_hitTestedGlyph
)?.OnMouseUp(
_hitTestedGlyph
, button) ?? false;
724
Behavior? behavior = GetAppropriateBehavior(
_hitTestedGlyph
);
730
behavior.OnDragDrop(
_hitTestedGlyph
, e);
819
Behavior? behavior = GetAppropriateBehavior(
_hitTestedGlyph
);
827
if (
_hitTestedGlyph
is null ||
828
(
_hitTestedGlyph
is not null && !_dragEnterReplies.Contains(
_hitTestedGlyph
)))
830
behavior.OnDragOver(
_hitTestedGlyph
, e);
839
=> GetAppropriateBehavior(
_hitTestedGlyph
)?.OnGiveFeedback(
_hitTestedGlyph
, e);
842
=> GetAppropriateBehavior(
_hitTestedGlyph
)?.OnQueryContinueDrag(
_hitTestedGlyph
, e);