2 writes to _hitTestedGlyph
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentTray.cs (2)
2653
_hitTestedGlyph
= _traySelectionAdorner.Glyphs[i];
2658
_hitTestedGlyph
= null;
16 references to _hitTestedGlyph
System.Windows.Forms.Design (16)
System\Windows\Forms\Design\ComponentTray.cs (16)
2668
if (
_hitTestedGlyph
is not null &&
_hitTestedGlyph
.Behavior is not null)
2670
return
_hitTestedGlyph
.Behavior.OnMouseDoubleClick(
_hitTestedGlyph
, e.Button, new Point(e.X, e.Y));
2682
if (
_hitTestedGlyph
is not null &&
_hitTestedGlyph
.Behavior is not null)
2684
return
_hitTestedGlyph
.Behavior.OnMouseDown(
_hitTestedGlyph
, e.Button, new Point(e.X, e.Y));
2696
if (
_hitTestedGlyph
is not null &&
_hitTestedGlyph
.Behavior is not null)
2698
return
_hitTestedGlyph
.Behavior.OnMouseMove(
_hitTestedGlyph
, e.Button, new Point(e.X, e.Y));
2710
if (
_hitTestedGlyph
is not null &&
_hitTestedGlyph
.Behavior is not null)
2712
return
_hitTestedGlyph
.Behavior.OnMouseUp(
_hitTestedGlyph
, e.Button);