24 lines
549 B
C#
24 lines
549 B
C#
using System;
|
|
using System.Text;
|
|
using System.Drawing;
|
|
|
|
namespace DevComponents.DotNetBar.Rendering
|
|
{
|
|
/// <summary>
|
|
/// Defines the color table for the SuperTooltip.
|
|
/// </summary>
|
|
public class Office2007SuperTooltipColorTable
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the background colors.
|
|
/// </summary>
|
|
public LinearGradientColorTable BackgroundColors = null;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the text color.
|
|
/// </summary>
|
|
public Color TextColor = Color.Empty;
|
|
|
|
}
|
|
}
|