Occurs just before the objects in the composition tree are rendered.
Public Shared Event Rendering As EventHandler
Dim handler As EventHandler AddHandler CompositionTarget.Rendering, handler
public static event EventHandler Rendering
public: static event EventHandler^ Rendering { void add (EventHandler^ value); void remove (EventHandler^ value); }
JScript does not support events.
<object Rendering="EventHandler" .../>
The Rendering event is routed to the specified event handler after animation and layout have been applied to the composition tree.
The Rendering event is raised during the Windows Presentation Foundation (WPF) rendering process. The following example shows how you register an EventHandler delegate to the static Rendering method on CompositionTarget.
// Add an event handler to update canvas background color just before it is rendered. CompositionTarget.Rendering += UpdateColor;
You can use your rendering event handler to create custom drawing content. This event handler gets called once per frame. Each time that Windows Presentation Foundation (WPF) marshals the persisted rendering data in the visual tree across to the composition tree, your event handler is called. In addition, if changes to the visual tree force updates to the composition tree, your event handler is also called. Note that your event handler is called after layout has been computed. However, you can modify layout in your event handler, which means that layout will be computed once more before rendering.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003