'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.
Property | Description |
---|---|
Object | Gets the object related to the event. |
ThemeName | Gets the name of the theme related to the event. (Inherited from C1.Win.Themes.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