-
Notifications
You must be signed in to change notification settings - Fork 3
Utils.GradientBar
JaykeBird edited this page Feb 21, 2023
·
3 revisions
Back to home | Back to Reference | View raw text
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
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 |
Returns | Name |
---|---|
void |
OnColorSchemeChanged (DependencyObject d, DependencyPropertyChangedEventArgs e)Perform an action when the ColorScheme property has changed. Primarily used internally. |
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 |
Returns | Name |
---|---|
Delegate |
_CreateDelegate (Type delegateType, string handler) |
IComponentConnector
UserControl
public GradientBar()
Create a new GradientBar.
public static void OnColorSchemeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Type | Name | Description |
---|---|---|
DependencyObject |
d | The object containing the property that changed. |
DependencyPropertyChangedEventArgs |
e | Event arguments about the property change. |
Perform an action when the ColorScheme property has changed. Primarily used internally.
public void ApplyColorScheme(ColorScheme cs)
Type | Name | Description |
---|---|---|
ColorScheme |
cs | The color scheme to apply. |
Apply a color scheme to this control. The color scheme can quickly apply a whole visual style to the control.
public virtual void InitializeComponent()
InitializeComponent
internal Delegate _CreateDelegate(Type delegateType, string handler)
Type | Name | Description |
---|---|---|
Type |
delegateType | |
string |
handler |
public GradientStopCollection GradientStops { get; set; }
Get or set the list of gradient stops to display in this GradientBar.
public ColorScheme ColorScheme { get; set; }
Get or set the color scheme used for this control. The color scheme can quickly apply a whole visual style to your control.
public GradientStop SelectedGradientStop { get; }
Get the gradient stop that is currently selected, or returns null
if no gradient stop is selected.
public event DependencyPropertyChangedEventHandler ColorSchemeChanged
Raised when the ColorScheme property is changed.
public event EventHandler SelectionChanged
Raised when the SelectedGradientStop is changed.
public event EventHandler GradientChanged
Raised when the SelectedGradientStop is changed.
Generated with ModularDoc