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,38 @@
using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines the color table for the quick access toolbar in all states.
/// </summary>
public class Office2007QuickAccessToolbarColorTable
{
/// <summary>
/// Gets or sets the colors for the quick access toolbar background when hosted in ribbon control caption and form is active
/// or the background colors when toolbar is hosted below the ribbon control.
/// </summary>
public Office2007QuickAccessToolbarStateColorTable Active = new Office2007QuickAccessToolbarStateColorTable();
/// <summary>
/// Gets or sets the colors for the quick access toolbar background when hosted in ribbon control caption and form is inactive
/// </summary>
public Office2007QuickAccessToolbarStateColorTable Inactive = new Office2007QuickAccessToolbarStateColorTable();
/// <summary>
/// Gets or sets the colors for the quick access toolbar background when positioned below the ribbon bar.
/// </summary>
public Office2007QuickAccessToolbarStateColorTable Standalone = new Office2007QuickAccessToolbarStateColorTable();
/// <summary>
/// Gets or sets the background color of Customize Quick Access Toolbar menu label displayed on customize quick access toolbar menu.
/// </summary>
public Color QatCustomizeMenuLabelBackground = Color.Empty;
/// <summary>
/// Gets or sets the text color of Customize Quick Access Toolbar menu label displayed on customize quick access toolbar menu.
/// </summary>
public Color QatCustomizeMenuLabelText = Color.Empty;
}
}