When overridden in a derived class, participates in rendering operations that are directed by the layout system. The rendering instructions for this element are not used directly when this method is invoked, and are instead preserved for later asynchronous use by layout and drawing.
Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
protected override void OnRender(
DrawingContext drawingContext
) |
Visual Basic |
---|
Protected Overrides Sub OnRender (
drawingContext As DrawingContext
) |
Visual C++ |
---|
protected:
virtual void OnRender(
DrawingContext^ drawingContext
) override |
F# |
---|
abstract OnRender :
drawingContext : DrawingContext -> unit
override OnRender :
drawingContext : DrawingContext -> unit |
Parameters
- drawingContext
- Type: System.Windows.Media..::..DrawingContext
The drawing instructions for a specific element. This context is provided to the layout system.
See Also