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,37 @@
using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines the color table for the Ribbon Tab Group.
/// </summary>
public class Office2007RibbonTabGroupColorTable
{
/// <summary>
/// Gets or sets the name of the color table.
/// </summary>
public string Name = "";
/// <summary>
/// Gets or sets the background color.
/// </summary>
public LinearGradientColorTable Background = new LinearGradientColorTable(ColorScheme.GetColor(0xCADBF3), ColorScheme.GetColor(0xCDBFD7));
/// <summary>
/// Gets or sets the background highlight colors.
/// </summary>
public LinearGradientColorTable BackgroundHighlight = new LinearGradientColorTable(Color.FromArgb(192, ColorScheme.GetColor(0xD068C9)), Color.Transparent);
/// <summary>
/// Gets or sets the text color.
/// </summary>
public Color Text = ColorScheme.GetColor(0x15428B);
/// <summary>
/// Gets or sets the border color
/// </summary>
public LinearGradientColorTable Border = new LinearGradientColorTable(Color.FromArgb(16, Color.DarkGray), Color.FromArgb(192, Color.DarkGray));
}
}