DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,57 @@
using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines the color table for the Slider Item in single state.
/// </summary>
public class Office2007SliderStateColorTable
{
/// <summary>
/// Gets or sets the part background colors.
/// </summary>
public GradientColorTable PartBackground = null;
/// <summary>
/// Gets or sets the part border color
/// </summary>
public Color PartBorderColor = Color.Empty;
/// <summary>
/// Gets or sets the part border light color
/// </summary>
public Color PartBorderLightColor = Color.Empty;
/// <summary>
/// Gets or sets the part foreground color.
/// </summary>
public Color PartForeColor = Color.Empty;
/// <summary>
/// Gets or sets the part foreground light color.
/// </summary>
public Color PartForeLightColor = Color.Empty;
/// <summary>
/// Gets or sets the track line color.
/// </summary>
public Color TrackLineColor = Color.Empty;
/// <summary>
/// Gets or sets the track line light color.
/// </summary>
public Color TrackLineLightColor = Color.Empty;
/// <summary>
/// Gets or sets the track label color.
/// </summary>
public Color LabelColor = Color.Empty;
/// <summary>
/// Gets or sets the track label color when on Slider control.
/// </summary>
public Color SliderLabelColor = Color.Empty;
}
}