Table of Contents
  • Getting Started
  • EO.Pdf
  • EO.Web
  • EO.WebBrowser
  • EO.Wpf
  • Common Topics
  • Reference
    • .NET API Reference
      • EO.Base
      • EO.Base.UI
      • EO.Extensions
      • EO.Pdf
      • EO.Pdf.Acm
      • EO.Pdf.Contents
      • EO.Pdf.Drawing
      • EO.Pdf.Mvc
      • EO.Web
      • EO.WebBrowser
      • EO.WebBrowser.DOM
      • EO.WebEngine
      • EO.WinForm
      • EO.Wpf
      • EO.Wpf.Gauge
      • EO.Wpf.Gauge.Shapes
      • EO.Wpf.Primitives
      • EO.Wpf.Themes.Aero
      • EO.Wpf.Themes.Classic
      • EO.Wpf.Themes.Luna
      • EO.Wpf.Themes.Metro
      • EO.Wpf.Themes.Royale
    • JavaScript API Reference
ThemeManager.RegisterSkinStyles Method 

Register a list of skin styles.

Syntax
 public static void RegisterSkinStyles(
   params SkinStyleInfo[] styleInfos
);

Parameters

styleInfos
A list of SkinStyleInfo objects that contain information about the styles.
Remarks

Use this function to register custom skins. A custom skin is a named style for a specific control type. Once a skin is registered, it can be applied either directly through SkinName attached property, or indirectly through ThemeName attached property or AppTheme property.

All skins and thems must be registered before they can be used, so you must register them skins as early as possible, such as in your App class's constructor.

See Also