Hi,
I have a cel in a grid which is a click button.
Whenever the butten is clicked, I want to show a popup form that will load near the button.
How can I get the location of the cell relative to the screen as oppose to the parent grid?
Thanks,
You could get the UIElement from the cell, as I show below, or use the Cursor.Position if you prefer that.
Point point = this.ultraGrid1.PointToScreen(cell.GetUIElement().Rect.Location);
-Matt