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,26 @@
using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines color table for RibbonBar in various states.
/// </summary>
public class Office2007RibbonBarColorTable
{
/// <summary>
/// Gets or sets the colors for the default RibbonBar state.
/// </summary>
public Office2007RibbonBarStateColorTable Default = new Office2007RibbonBarStateColorTable();
/// <summary>
/// Gets or sets the colors for RibbonBar when mouse is over the control.
/// </summary>
public Office2007RibbonBarStateColorTable MouseOver = new Office2007RibbonBarStateColorTable();
/// <summary>
/// Gets or sets the colors for RibbonBar when ribbon bar is in overflow state and expanded to show all the items.
/// </summary>
public Office2007RibbonBarStateColorTable Expanded = new Office2007RibbonBarStateColorTable();
}
}