.netwinformsuser-interfacecoordinatestoolstripbutton

How to get coordinates of ToolStripButton?


How can I get coordinates of ToolStripButton?


Solution

  •  Rectangle rc = toolStripButton1.Bounds;
    

    Relative from the ToolStrip. Use PointToScreen/Client to map.