/// <summary> /// Transforms the specified point from client to screen coordinates. /// </summary> /// <param name="point"> /// A <see cref="System.Drawing.Point"/> to transform. /// </param> /// <returns> /// The point transformed to screen coordinates. /// </returns> public Point PointToScreen(Point point) { return(implementation.PointToScreen(point)); }