DevForce Help Reference
Recomposed Event


Raised when the composition container is modified after initialization.
Syntax
'Declaration
 
Public Event Recomposed As EventHandler(Of RecomposedEventArgs)
'Usage
 
Dim instance As CompositionHost
Dim handler As EventHandler(Of RecomposedEventArgs)
 
AddHandler instance.Recomposed, handler
public event EventHandler<RecomposedEventArgs> Recomposed
Event Data

The event handler receives an argument of type RecomposedEventArgs containing data related to this event. The following RecomposedEventArgs properties provide information specific to this event.

PropertyDescription
Assembly The assembly causing the recomposition.  
AssemblyLoaded Returns true if an assembly download caused the recomposition.  
HasError Returns true if the recomposition was not performed due to a failure.  
ShouldRecomposeTrue if the XAP included new assemblies not previously probed, or if the Assembly had not been previously loaded.  
Remarks
This event is used internally by DevForce to handle recomposition after dynamic content is added to the container, but your application can also listen for Recomposed events.

Raised when dynamic content is added via one of the Add(Uri) methods, and also after a Refresh.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CompositionHost Class
CompositionHost Members

Send Feedback