display tooltip on mouse hover in cell
New DiscussionHello
how is it possible to read cell value and display tooltip on mouse hover in a grid .
i tryed the
Point mousePoint = new Point(MousePosition.X, MousePosition.Y);
UIElement element = ultraGrid1.DisplayLayout.UIElement.ElementFromPoint(mousePoint);
UltraGridCell cell = element.GetContext(typeof(UltraGridCell)) as UltraGridCell;
if (cell != null)
{
MessageBox.Show(cell.Row.Index.ToString() + ” “ + cell.Column.Key);
}
but it does not work
Sign In
to post a reply
Replies
Discussion created by
Favorites
Replies
Created On
Last Post
Discussion created by
Favorites
0 Replies
13 Created On
Feb 01, 2010 Last Post
16 years, 1 month ago