Interface IRenderRoot
Represents the root of a renderable tree.
[NotClientImplementable]
public interface IRenderRoot
Properties
ClientSize
Gets the client size of the window.
Size ClientSize { get; }
Property Value
HitTester
IHitTester HitTester { get; }
Property Value
RenderScaling
The scaling factor to use in rendering.
double RenderScaling { get; }
Property Value
Renderer
Gets the renderer for the window.
IRenderer Renderer { get; }
Property Value
Methods
PointToClient(PixelPoint)
Converts a point from screen to client coordinates.
Point PointToClient(PixelPoint point)
Parameters
point
PixelPointThe point in screen device coordinates.
Returns
- Point
The point in client coordinates.
PointToScreen(Point)
Converts a point from client to screen coordinates.
PixelPoint PointToScreen(Point point)
Parameters
point
PointThe point in client coordinates.
Returns
- PixelPoint
The point in screen device coordinates.