ComponentOne Ribbon for WinForms
C1.Win.C1Ribbon.4.5.2 Assembly / C1.Win.C1Ribbon Namespace / C1Ribbon Class / GroupDeserialized Event

In This Topic
    GroupDeserialized Event
    In This Topic
    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