CPF/CPF.ReoGrid/ControlAppearanceColors.cs
2024-06-24 10:15:59 +08:00

46 lines
882 B
C#

using System;
namespace CPF.ReoGrid
{
public enum ControlAppearanceColors : short
{
LeadHeadNormal = 1,
LeadHeadHover,
LeadHeadSelected,
LeadHeadIndicatorStart = 11,
LeadHeadIndicatorEnd,
ColHeadSplitter = 20,
ColHeadNormalStart,
ColHeadNormalEnd,
ColHeadHoverStart,
ColHeadHoverEnd,
ColHeadSelectedStart,
ColHeadSelectedEnd,
ColHeadFullSelectedStart,
ColHeadFullSelectedEnd,
ColHeadInvalidStart,
ColHeadInvalidEnd,
ColHeadText = 36,
RowHeadSplitter = 40,
RowHeadNormal,
RowHeadHover,
RowHeadSelected,
RowHeadFullSelected,
RowHeadInvalid,
RowHeadText = 51,
SelectionBorder = 61,
SelectionFill,
GridBackground = 81,
GridText,
GridLine,
OutlinePanelBorder = 91,
OutlinePanelBackground,
OutlineButtonBorder,
OutlineButtonText,
SheetTabBorder = 201,
SheetTabBackground,
SheetTabText,
SheetTabSelected
}
}