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,65 @@
using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines the color table for the slider item.
/// </summary>
public class Office2007SliderColorTable
{
/// <summary>
/// Gets or sets the default state colors.
/// </summary>
public Office2007SliderStateColorTable Default = new Office2007SliderStateColorTable();
/// <summary>
/// Gets or sets the mouse over state colors.
/// </summary>
public Office2007SliderStateColorTable MouseOver = new Office2007SliderStateColorTable();
/// <summary>
/// Gets or sets the mouse pressed colors.
/// </summary>
public Office2007SliderStateColorTable Pressed = new Office2007SliderStateColorTable();
/// <summary>
/// Gets or sets the disabled colors.
/// </summary>
public Office2007SliderStateColorTable Disabled = new Office2007SliderStateColorTable();
/// <summary>
/// Gets or sets the optional color table for Thumb part of the slider. When set to null default values from Office2007SliderColorTable are used.
/// </summary>
public Office2007SliderPartColorTable TrackPart = null;
/// <summary>
/// Gets or sets the optional color table for Increase button part of the slider. When set to null default values from Office2007SliderColorTable are used.
/// </summary>
public Office2007SliderPartColorTable IncreaseButtonPart = null;
/// <summary>
/// Gets or sets the optional color table for Decrease button part of the slider. When set to null default values from Office2007SliderColorTable are used.
/// </summary>
public Office2007SliderPartColorTable DecreaseButtonPart = null;
}
/// <summary>
/// Defines set of color tables for single slider part.
/// </summary>
public class Office2007SliderPartColorTable
{
/// <summary>
/// Gets or sets the default state colors.
/// </summary>
public Office2007SliderStateColorTable Default = new Office2007SliderStateColorTable();
/// <summary>
/// Gets or sets the mouse over state colors.
/// </summary>
public Office2007SliderStateColorTable MouseOver = new Office2007SliderStateColorTable();
/// <summary>
/// Gets or sets the mouse pressed colors.
/// </summary>
public Office2007SliderStateColorTable Pressed = new Office2007SliderStateColorTable();
}
}