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

In This Topic
    GroupDeserialized Event (C1Ribbon)
    In This Topic
    Occurs when a RibbonGroup is loaded from XML.
    Syntax
    'Declaration
     
    
    Public Event GroupDeserialized As EventHandler(Of GroupDeserializedEventArgs)
    public event 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