Home - Forums-.NET - FlyGrid.Net (Windows Forms) - How? Cell Coordinates to Screen Coordinates

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

How? Cell Coordinates to Screen Coordinates
Link Posted: 17-Oct-2006 11:55
Hello 9rays:

The following does not seem to return correct SCREEN coordinates of the specified FlyGrid {node, column}.

What am I doing wrong?


            Rectangle rectangle = Utilities.GetCellRectangle(
              flyGrid,
              flyGrid.Rows.Items[0],
              flyGrid.Columns.Items[0]);
            Point pointOnScreen = flyGrid.PointToScreen(new Point(rectangle.X + 1, rectangle.Y + 1));


    public static Rectangle GetCellRectangle(NineRays.Windows.Forms.FlyGrid flyGrid, NodeBase node, Column column)
    {
      FlyGridViewPort viewPort = flyGrid.ActiveRootPort;
      int row = viewPort.Rows.GetRowFromNode(node);
      if (row != -1) //node is visible
      {
        int col = viewPort.Columns.GetColumnCellIndex(column);
        if (col != -1)//column is visible
        {
          return viewPort.GetRectangle(viewPort.Bounds, col, row);
        }
      }

      return Rectangle.Empty;
    }
Link Posted: 17-Oct-2006 12:41
Please check the container control of the FlyGrid.Net - some controls (docking controls for example) incorrectly parented their child controls.
Link Posted: 17-Oct-2006 16:37
Actually, it was my fault... this code was being called just before the panel containing the FlyGrid was being displayed.