ComponentOne Ribbon for WinForms
GroupDeserialized Event

C1.Win.C1Ribbon.4 Assembly > C1.Win.C1Ribbon Namespace > C1Ribbon Class : GroupDeserialized Event
Occurs when a RibbonGroup is loaded from XML.
Syntax
'Declaration
 
Public Event GroupDeserialized As System.EventHandler(Of GroupDeserializedEventArgs)
public event System.EventHandler<GroupDeserializedEventArgs> GroupDeserialized
Event Data

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

PropertyDescription
Gets the RibbonGroup loaded from XML.  
Remarks
Use this event to subscribe event handlers after loading a RibbonGroup.
See Also