WPF

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class FluentLightThemeSettings - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class FluentLightThemeSettings

    Represents a class that holds the respective theme color and common key values for customization

    Inheritance
    System.Object
    FluentLightThemeSettings
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.Themes.FluentLight.WPF
    Assembly: Syncfusion.Themes.FluentLight.WPF.dll
    Syntax
    public class FluentLightThemeSettings : IThemeSetting

    Constructors

    FluentLightThemeSettings()

    Constructor to create an instance of FluentLightThemeSettings.

    Declaration
    public FluentLightThemeSettings()

    Properties

    BodyAltFontSize

    Gets or sets the alternate font size of content area of control in selected theme

    Declaration
    public double BodyAltFontSize { get; set; }
    Property Value
    Type Description
    System.Double
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.Body AltFontSize = 10;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    BodyFontSize

    Gets or sets the font size of content area of control in selected theme

    Declaration
    public double BodyFontSize { get; set; }
    Property Value
    Type Description
    System.Double
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.BodyFontSize = 12;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    FontFamily

    Gets or sets the font family of text in control for selected theme

    Declaration
    public FontFamily FontFamily { get; set; }
    Property Value
    Type Description
    System.Windows.Media.FontFamily
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.FontFamily = new FontFamily("Callibri");
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    HeaderFontSize

    Gets or sets the font size of header related areas of control in selected theme

    Declaration
    public double HeaderFontSize { get; set; }
    Property Value
    Type Description
    System.Double
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.HeaderFontSize = 16;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    LinkForeground

    Declaration
    public Brush LinkForeground { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    Palette

    Gets or sets the palette primary colors to be set for specific theme.

    Declaration
    public FluentPalette Palette { get; set; }
    Property Value
    Type Description
    FluentPalette

    One of the Palette enumeration that specifies the palette to be chosen.

    The default value is Default.

    Fields:

    EnumerationDescription.
    DefaultThe Default palette primary colors will be applied for specific theme.
    PinkRedThe PinkRed palette primary colors will be applied for specific theme.
    RedThe Red palette primary colors will be applied for specific theme.
    RedOrangeThe RedOrange palette primary colors will be applied for specific theme.
    OrangeThe Orange palette primary colors will be applied for specific theme.
    GreenThe Green palette primary colors will be applied for specific theme.
    GreenCyanThe GreenCyan palette primary colors will be applied for specific theme.
    CyanThe Cyan palette primary colors will be applied for specific theme.
    CyanBlueThe CyanBlue palette primary colors will be applied for specific theme.
    BlueThe Blue palette primary colors will be applied for specific theme.
    BlueMegentaThe BlueMegenta palette primary colors will be applied for specific theme.
    MegentaThe Megenta palette primary colors will be applied for specific theme.
    MegentaPinkThe MegentaPink palette primary colors will be applied for specific theme.
    Remarks

    Applicable only for ThemeStudio specific themes.

    Examples
    FluentLightThemeSettings themeSettings = new FluentLightThemeSettings();
    themeSettings.Palette = FluentPalette.PinkRed;
    SfSkinManager.RegisterThemeSettings("FluentLight", themeSettings);

    PrimaryBackground

    Gets or sets the primary background color of content area of control in selected theme

    Declaration
    public Brush PrimaryBackground { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.PrimaryBackground = Brushes.Red;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    PrimaryBackgroundOpacity1

    Declaration
    public Brush PrimaryBackgroundOpacity1 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorDark1

    Declaration
    public Brush PrimaryColorDark1 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorDark2

    Declaration
    public Brush PrimaryColorDark2 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorDark3

    Declaration
    public Brush PrimaryColorDark3 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorForeground

    Declaration
    public Brush PrimaryColorForeground { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorLight1

    Declaration
    public Brush PrimaryColorLight1 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorLight2

    Declaration
    public Brush PrimaryColorLight2 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryColorLight3

    Declaration
    public Brush PrimaryColorLight3 { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    PrimaryForeground

    Gets or sets the primary foreground color of content area of control in selected theme

    Declaration
    public Brush PrimaryForeground { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.PrimaryForeground = Brushes.AntiqueWhite;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    PrimaryForegroundDisabled

    Declaration
    public Brush PrimaryForegroundDisabled { get; set; }
    Property Value
    Type Description
    System.Windows.Media.Brush

    SubHeaderFontSize

    Gets or sets the font size of sub header related areas of control in selected theme

    Declaration
    public double SubHeaderFontSize { get; set; }
    Property Value
    Type Description
    System.Double
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.SubHeaderFontSize = 14;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    SubTitleFontSize

    Gets or sets the font size of sub title related areas of control in selected theme

    Declaration
    public double SubTitleFontSize { get; set; }
    Property Value
    Type Description
    System.Double
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.SubTitleFontSize = 12;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);

    TitleFontSize

    Gets or sets the font size of title related areas of control in selected theme

    Declaration
    public double TitleFontSize { get; set; }
    Property Value
    Type Description
    System.Double
    Examples
    FluentLightThemeSettings fluentLightThemeSettings = new FluentLightThemeSettings();
    fluentLightThemeSettings.TitleFontSize = 14;
    SfSkinManager.RegisterThemeSettings("FluentLight", fluentLightThemeSettings);
    Back to top Generated by DocFX
    Copyright © 2001 - 2022 Syncfusion Inc. All Rights Reserved