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,45 @@
using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Represents the color table of RibbonBar for Office 2007 style. Default values represent blue Luna theme.
/// </summary>
public class Office2007RibbonBarStateColorTable
{
#region Color Definition
/// <summary>
/// Gets or sets the height in pixels of top background part.
/// </summary>
public float TopBackgroundHeight = 15;
/// <summary>
/// Gets or sets the outer border colors.
/// </summary>
public LinearGradientColorTable OuterBorder = new LinearGradientColorTable(0xC6D2DF, 0x9FC1DB);
/// <summary>
/// Gets or sets the inner border colors.
/// </summary>
public LinearGradientColorTable InnerBorder = new LinearGradientColorTable(0xEFF4FA, 0xF3F9FF);
/// <summary>
/// Gets or sets the top background colors.
/// </summary>
public LinearGradientColorTable TopBackground = new LinearGradientColorTable(0xDEE8F5, 0xD1DFF0);
/// <summary>
/// Gets or sets the bottom background colors.
/// </summary>
public LinearGradientColorTable BottomBackground = new LinearGradientColorTable(0xC7D8ED, 0xE7F2FF);
/// <summary>
/// Gets or sets the title background colors.
/// </summary>
public LinearGradientColorTable TitleBackground = new LinearGradientColorTable(0xC2D9F1, 0xC1D9F0);
/// <summary>
/// Gets or sets the color of title text.
/// </summary>
public Color TitleText = ColorScheme.GetColor(0x3E6AAA);
#endregion
}
}