Skip to main content

Class DisplayTheme

Represents a theme for display controls in the user interface.

Assembly: MicroLayout.dll
View Source
Declaration
public class DisplayTheme

Properties

BackgroundColor

Gets or sets the background color for display controls using this theme.

View Source
Declaration
public Color? BackgroundColor { get; set; }

ForegroundColor

Gets or sets the foreground color for display controls using this theme.

View Source
Declaration
public Color? ForegroundColor { get; set; }

PressedColor

Gets or sets the color for display controls when pressed (e.g., buttons).

View Source
Declaration
public Color? PressedColor { get; set; }

HighlightColor

Gets or sets the color for display controls when highlighted.

View Source
Declaration
public Color? HighlightColor { get; set; }

ShadowColor

Gets or sets the shadow color for display controls.

View Source
Declaration
public Color? ShadowColor { get; set; }

TextColor

Gets or sets the text color for display controls that display text.

View Source
Declaration
public Color? TextColor { get; set; }

Font

Gets or sets the font for display controls that display text.

View Source
Declaration
public IFont? Font { get; set; }