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,39 @@
using System;
using System.Drawing;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines the color table for dialog launcher state.
/// </summary>
public class Office2007DialogLauncherStateColorTable
{
/// <summary>
/// Gets or sets the color of dialog launcher symbol.
/// </summary>
public Color DialogLauncher = ColorScheme.GetColor("668EAF");
/// <summary>
/// Gets or sets the shade color of dialog launcher symbol.
/// </summary>
public Color DialogLauncherShade = Color.White;
/// <summary>
/// Gets or sets the background color for the top part of the element.
/// </summary>
public LinearGradientColorTable TopBackground = new LinearGradientColorTable();
/// <summary>
/// Gets or sets the background color for the bottom part of the element.
/// </summary>
public LinearGradientColorTable BottomBackground = new LinearGradientColorTable();
/// <summary>
/// Gets or sets the outer border colors.
/// </summary>
public LinearGradientColorTable OuterBorder = new LinearGradientColorTable();
/// <summary>
/// Gets or sets the inner border colors.
/// </summary>
public LinearGradientColorTable InnerBorder = new LinearGradientColorTable();
}
}