4 references to GetItemAt
System.Windows.Forms (4)
System\Windows\Forms\Controls\Menus\MenuStrip.cs (1)
256ToolStripItem? item = GetItemAt(pt);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3977public ToolStripItem? GetItemAt(int x, int y) => GetItemAt(new Point(x, y));
System\Windows\Forms\Controls\ToolStrips\ToolStrip.ToolStripAccessibleObject.cs (1)
31ToolStripItem? item = owner.GetItemAt(clientHit);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropTargetManager.cs (1)
57return _owner.GetItemAt(_owner.PointToClient(new Point(x, y)));