如何在MousePosition上获取CursorPosition上的toolTip?

时间:2013-05-03 09:20:14

标签: c# visual-studio-2010 tooltip

我正在编写代码编辑器(Windows窗体应用程序),我只是想问一下如何获取工具提示位置而不是鼠标位置会使它在光标上像这样1:

Get current cursor lower left position so that tooltip could be displayed properly

特别是这段代码:

private void panel1_MouseClick(object sender, MouseEventArgs e) {
  int x = e.X;
  int y = e.Y + Cursor.Current.Size.Height - Cursor.Current.HotSpot.Y;
  toolTip1.Show("test", panel1, x, y);
}

但是我没有面板我只有richtextbox [rtb](作为代码编辑器)和labelbox [lb](作为contexthint)。

任何人都会这样?非常需要,谢谢!

0 个答案:

没有答案