2
我想在winforms的網格列上使用ToolTip類添加工具提示。使用工具提示類在網格(Winforms)的列上添加工具提示,它有可能嗎?
我想要這個,因爲我需要延長radgridview中builtin grid tooltip的持續時間。如果你可以幫助我設置網格內置工具提示的時間,那麼它也足夠了。
編輯:任何人都可以告訴我,這可能嗎?
謝謝。
我想在winforms的網格列上使用ToolTip類添加工具提示。使用工具提示類在網格(Winforms)的列上添加工具提示,它有可能嗎?
我想要這個,因爲我需要延長radgridview中builtin grid tooltip的持續時間。如果你可以幫助我設置網格內置工具提示的時間,那麼它也足夠了。
編輯:任何人都可以告訴我,這可能嗎?
謝謝。
可以將工具提示添加到現有的控件。我從來沒有用過radgridview,所以我只能給你一個大致的方向。
ToolTip tooltip = new ToolTip();
tooltip.SetToolTip(grid, "your caption here");
tooltip.Popup += HandleToolTipPopup;
tooltip.AutoPopDelay = {time to display tooltip};
private void HandleToolTipPopup(object sender, PopupEventArgs e)
{
Point mouseLocation = Control.MousePosition;
Point relativeLocation = grid.PointToClient(mouseLocation);
// Check to see if it is within the area to popup on.
// Set e.Cancel to false if not.
}
感謝您的回答。 – Kashif 2010-03-05 04:41:21
我不明白爲什麼不是(但我可能是錯的),你有一些代碼,你可以發佈,這是不工作,你的期望? – Nate 2010-03-01 16:42:36