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

In This Topic
    ItemDeserialized Event (C1StatusBar)
    In This Topic
    Occurs when a RibbonItem is loaded from XML.
    Syntax
    'Declaration
     
    Public Event ItemDeserialized As System.EventHandler(Of ItemDeserializedEventArgs)
    public event System.EventHandler<ItemDeserializedEventArgs> ItemDeserialized
    Event Data

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

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