Themes for WinForms | ComponentOne
C1.Win.C1Themes.4.5.2 Assembly / C1.Win.C1Themes Namespace / C1ThemeController Class / ObjectThemeApplied Event

In This Topic
    ObjectThemeApplied Event (C1ThemeController)
    In This Topic
    Occurs after a theme has been applied to an object managed by the current theme controller.

    See remarks for details.

    Syntax
    'Declaration
     
    Public Event ObjectThemeApplied As ObjectThemeEventHandler
    public event ObjectThemeEventHandler ObjectThemeApplied
    Event Data

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

    PropertyDescription
    Gets the object related to the event.  
    Gets the name of the theme related to the event. (Inherited from C1.Win.C1Themes.ThemeEventArgs)
    Remarks
    The ObjectThemeChanging and ObjectThemeChanged events occur when the value of the Theme extender property on an object changes. The ObjectThemeApplying and ObjectThemeApplied events occur when a new theme is applied to the object - which may happen even without changing the Theme property on the object. For instance, if the object uses the default theme specified for the containing form, and the form's theme is changed the Applying/Applied events on the object will fire but the Changing/Changed events will not.
    See Also