mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-08 18:26:35 +08:00
26 lines
752 B
C#
26 lines
752 B
C#
namespace Dragablz
|
|
{
|
|
/// <summary>
|
|
/// Specifies where an item should appear when added to tab control, as the headers order do not
|
|
/// specifically correlate to the order of the the source items.
|
|
/// </summary>
|
|
public enum AddLocationHint
|
|
{
|
|
/// <summary>
|
|
/// Display item in the first position.
|
|
/// </summary>
|
|
First,
|
|
/// <summary>
|
|
/// Display item in the first position.
|
|
/// </summary>
|
|
Last,
|
|
/// <summary>
|
|
/// Display an item prior to the selected, or specified item.
|
|
/// </summary>
|
|
Prior,
|
|
/// <summary>
|
|
/// Display an item after the selected, or specified item.
|
|
/// </summary>
|
|
After
|
|
}
|
|
} |