169 lines
7.0 KiB
C#
169 lines
7.0 KiB
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace DevComponents.DotNetBar.Rendering
|
|
{
|
|
/// <summary>
|
|
/// Defines the names for the ElementStyle.Class style classes.
|
|
/// </summary>
|
|
public class ElementStyleClassKeys
|
|
{
|
|
/// <summary>
|
|
/// Gets the key for the GalleryContainer background style class.
|
|
/// </summary>
|
|
public static readonly string RibbonGalleryContainerKey = "RibbonGalleryContainer";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the Ribbon File menu outer container background style class.
|
|
/// </summary>
|
|
public static readonly string RibbonFileMenuContainerKey = "RibbonFileMenuContainer";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the Ribbon File menu two column container background style class.
|
|
/// </summary>
|
|
public static readonly string RibbonFileMenuTwoColumnContainerKey = "RibbonFileMenuTwoColumnContainer";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the Ribbon File menu first column container background style class.
|
|
/// </summary>
|
|
public static readonly string RibbonFileMenuColumnOneContainerKey = "RibbonFileMenuColumnOneContainer";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the Ribbon File menu second column container background style class.
|
|
/// </summary>
|
|
public static readonly string RibbonFileMenuColumnTwoContainerKey = "RibbonFileMenuColumnTwoContainer";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the Ribbon File menu bottom container background style class.
|
|
/// </summary>
|
|
public static readonly string RibbonFileMenuBottomContainerKey = "RibbonFileMenuBottomContainer";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the text box border style class.
|
|
/// </summary>
|
|
public static readonly string TextBoxBorderKey = "TextBoxBorder";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the RichTextBox control border style class.
|
|
/// </summary>
|
|
public static readonly string RichTextBoxBorderKey = "RichTextBoxBorder";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the ItemPanel style class.
|
|
/// </summary>
|
|
public static readonly string ItemPanelKey = "ItemPanel";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the ListBoxAdv style class.
|
|
/// </summary>
|
|
public static readonly string ListBoxAdvKey = "ListBoxAdv";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the date time input background style class.
|
|
/// </summary>
|
|
public static readonly string DateTimeInputBackgroundKey = "DateTimeInputBackground";
|
|
|
|
/// <summary>
|
|
/// Gets the style key for the Ribbon client panel.
|
|
/// </summary>
|
|
public static readonly string RibbonClientPanelKey = "RibbonClientPanel";
|
|
|
|
/// <summary>
|
|
/// Gets the style key for the ListView control border style.
|
|
/// </summary>
|
|
public static readonly string ListViewBorderKey = "ListViewBorder";
|
|
|
|
/// <summary>
|
|
/// Gets the style key for the Office2007 Status Bar alternative background.
|
|
/// </summary>
|
|
public static readonly string Office2007StatusBarBackground2Key = "Office2007StatusBarBackground2";
|
|
|
|
#if !NOTREE
|
|
/// <summary>
|
|
/// Gets the style key for the AdvTree control border and background.
|
|
/// </summary>
|
|
public static readonly string TreeBorderKey = "TreeBorderKey";
|
|
/// <summary>
|
|
/// Gets the style key for the AdvTree control columns header.
|
|
/// </summary>
|
|
public static readonly string TreeColumnsHeaderKey = "TreeColumnsHeaderKey";
|
|
/// <summary>
|
|
/// Gets the style key for the AdvTree control columns header for the child nodes.
|
|
/// </summary>
|
|
public static readonly string TreeNodesColumnsHeaderKey = "TreeNodesColumnsHeaderKey";
|
|
/// <summary>
|
|
/// Gets the style key for the AdvTree control column.
|
|
/// </summary>
|
|
public static readonly string TreeColumnKey = "TreeColumnKey";
|
|
#endif
|
|
/// <summary>
|
|
/// Gets the style key for the CrumbBar background style.
|
|
/// </summary>
|
|
public static readonly string CrumbBarBackgroundKey = "CrumbBarBackgroundKey";
|
|
/// <summary>
|
|
/// Gets the key for the DataGridView border style class.
|
|
/// </summary>
|
|
public static readonly string DataGridViewBorderKey = "DataGridViewBorder";
|
|
/// <summary>
|
|
/// Gets the key for the DataGridViewNumeric border style class.
|
|
/// </summary>
|
|
public static readonly string DataGridViewNumericBorderKey = "DataGridViewNumericBorder";
|
|
/// <summary>
|
|
/// Gets the key for the DataGridViewDateTime border style class.
|
|
/// </summary>
|
|
public static readonly string DataGridViewDateTimeBorderKey = "DataGridViewDateTimeBorder";
|
|
/// <summary>
|
|
/// Gets the key for the DataGridViewIpAddress border style class.
|
|
/// </summary>
|
|
public static readonly string DataGridViewIpAddressBorderKey = "DataGridViewIpAddressBorder";
|
|
/// <summary>
|
|
/// Gets the key for SlidePanel slide-out button style.
|
|
/// </summary>
|
|
public static string SlideOutButtonKey = "SlideOutButtonKey";
|
|
|
|
/// <summary>
|
|
/// Gets the key for the MetroTilePanel style class.
|
|
/// </summary>
|
|
public static readonly string MetroTilePanelKey = "MetroTilePanel";
|
|
/// <summary>
|
|
/// Gets the key for Metro tile group container title class.
|
|
/// </summary>
|
|
public static string MetroTileGroupTitleKey = "MetroTileGroupTitle";
|
|
|
|
/// <summary>
|
|
/// Gets the style key for the MonthCalendarAdv control.
|
|
/// </summary>
|
|
public static string MonthCalendarAdvKey = "MonthCalendarAdv";
|
|
/// <summary>
|
|
/// Gets the style key for the ProgressSteps control.
|
|
/// </summary>
|
|
public static string ProgressStepsKey = "ProgressSteps";
|
|
/// <summary>
|
|
/// Gets the style key for the SideNavStrip control.
|
|
/// </summary>
|
|
public static string SideNavStripKey = "SideNavStrip";
|
|
/// <summary>
|
|
/// Gets the style key for the TabFormPanel control.
|
|
/// </summary>
|
|
public static string TabFormPanelKey = "TabFormPanel";
|
|
|
|
/// <summary>
|
|
/// Gets the style key for the ToolboxGroup title.
|
|
/// </summary>
|
|
public static string ToolboxGroupTitleKey = "ToolboxGroupTitle";
|
|
/// <summary>
|
|
/// Gets the style key for the ToolboxGroup title mouse over.
|
|
/// </summary>
|
|
public static string ToolboxGroupTitleMouseOverKey = "ToolboxGroupTitleMouseOver";
|
|
/// <summary>
|
|
/// Gets the style key for the ToolboxGroup title group expanded state.
|
|
/// </summary>
|
|
public static string ToolboxGroupExpandedTitleKey = "ToolboxGroupExpandedTitle";
|
|
/// <summary>
|
|
/// Gets the style key for the ToolboxControl.
|
|
/// </summary>
|
|
public static string ToolboxControlKey = "ToolboxControl";
|
|
|
|
}
|
|
}
|