Get current cursor lower left position so that tooltip could be displayed properly
问题 I'm trying to display the tooltip by calling "ToolTip.Show(String, IWin32Window, Point)", but I wanted to do it like what Windows explorer does - displays the tooltip at the lower left corner of the cursor. I could get the mouse position by "MousePosition", but how could I get its lower left corner position? Thanks, 回答1: If nobody comes up with a better answer you can try this: toolTip1.Show("Am I where you want me to be?", this, this.PointToClient(MousePosition).X, this.PointToClient