6 overrides of GetHitTest
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\Behavior\ComponentGlyph.cs (1)
42public override Cursor? GetHitTest(Point p) => null;
System\Windows\Forms\Design\Behavior\ContainerSelectorGlyph.cs (1)
39public override Cursor? GetHitTest(Point p)
System\Windows\Forms\Design\Behavior\DesignerActionGlyph.cs (1)
87public override Cursor? GetHitTest(Point p)
System\Windows\Forms\Design\Behavior\SelectionGlyphBase.cs (1)
37public override Cursor? GetHitTest(Point p)
System\Windows\Forms\Design\Behavior\TableLayoutPanelResizeGlyph.cs (1)
48public override Cursor GetHitTest(Point p)
System\Windows\Forms\Design\ToolStripMenuItemDesigner.cs (1)
2611public override Cursor GetHitTest(Point p)
2 references to GetHitTest
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
494Cursor? hitTestCursor = Adorners[i].Glyphs[j].GetHitTest(pt);
System\Windows\Forms\Design\ComponentTray.cs (1)
2671Cursor hitTestCursor = _traySelectionAdorner.Glyphs[i].GetHitTest(p);