Skip to content

Utils.GradientBar

JaykeBird edited this page Feb 21, 2023 · 3 revisions

Back to home | Back to Reference | View raw text

GradientBar class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SolidShineUi.Utils
  SolidShineUi.Utils.GradientBar[[GradientBar]]
  end
  subgraph System.Windows.Markup
System.Windows.Markup.IComponentConnector[[IComponentConnector]]
  end
  subgraph System.Windows.Controls
System.Windows.Controls.UserControl[[UserControl]]
  end
System.Windows.Markup.IComponentConnector --> SolidShineUi.Utils.GradientBar
System.Windows.Controls.UserControl --> SolidShineUi.Utils.GradientBar
Loading

Members

Properties

Public properties

Type Name Methods
ColorScheme ColorScheme
Get or set the color scheme used for this control. The color scheme can quickly apply a whole visual style to your control.
get, set
GradientStopCollection GradientStops
Get or set the list of gradient stops to display in this GradientBar.
get, set
GradientStop SelectedGradientStop
Get the gradient stop that is currently selected, or returns null if no gradient stop is selected.
get

Methods

Public Static methods

Returns Name
void OnColorSchemeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Perform an action when the ColorScheme property has changed. Primarily used internally.

Public methods

Returns Name
void ApplyColorScheme(ColorScheme cs)
Apply a color scheme to this control. The color scheme can quickly apply a whole visual style to the control.
void InitializeComponent()
InitializeComponent

Internal methods

Returns Name
Delegate _CreateDelegate(Type delegateType, string handler)

Details

Inheritance

  • IComponentConnector
  • UserControl

Constructors

GradientBar

public GradientBar()
Summary

Create a new GradientBar.

Methods

OnColorSchemeChanged

public static void OnColorSchemeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Arguments
Type Name Description
DependencyObject d The object containing the property that changed.
DependencyPropertyChangedEventArgs e Event arguments about the property change.
Summary

Perform an action when the ColorScheme property has changed. Primarily used internally.

ApplyColorScheme

public void ApplyColorScheme(ColorScheme cs)
Arguments
Type Name Description
ColorScheme cs The color scheme to apply.
Summary

Apply a color scheme to this control. The color scheme can quickly apply a whole visual style to the control.

InitializeComponent

public virtual void InitializeComponent()
Summary

InitializeComponent

_CreateDelegate

internal Delegate _CreateDelegate(Type delegateType, string handler)
Arguments
Type Name Description
Type delegateType
string handler

Properties

GradientStops

public GradientStopCollection GradientStops { get; set; }
Summary

Get or set the list of gradient stops to display in this GradientBar.

ColorScheme

public ColorScheme ColorScheme { get; set; }
Summary

Get or set the color scheme used for this control. The color scheme can quickly apply a whole visual style to your control.

SelectedGradientStop

public GradientStop SelectedGradientStop { get; }
Summary

Get the gradient stop that is currently selected, or returns null if no gradient stop is selected.

Events

ColorSchemeChanged

public event DependencyPropertyChangedEventHandler ColorSchemeChanged
Summary

Raised when the ColorScheme property is changed.

SelectionChanged

public event EventHandler SelectionChanged
Summary

Raised when the SelectedGradientStop is changed.

GradientChanged

public event EventHandler GradientChanged
Summary

Raised when the SelectedGradientStop is changed.

Generated with ModularDoc

Clone this wiki locally