introvoyz041's picture
Migrated from GitHub
b1b3bae verified
namespace FarsiLibrary.Win
{
/// <summary>
/// Hit test result of <see cref="FATabStrip"/>
/// </summary>
public enum HitTestResult
{
CloseButton,
MenuGlyph,
TabItem,
None
}
/// <summary>
/// Theme Type
/// </summary>
public enum ThemeTypes
{
WindowsXP,
Office2000,
Office2003
}
/// <summary>
/// Indicates a change into TabStrip collection
/// </summary>
public enum FATabStripItemChangeTypes
{
Added,
Removed,
Changed,
SelectionChanged
}
}