You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Components/Tabs/TabHeaderPosition.cs

25 lines
473 B

2 years ago

using System.ComponentModel;
namespace Connected.Components;
public enum TabHeaderPosition
{
/// <summary>
/// Additional content is placed after the the first tab
/// </summary>
[Description("after")]
After,
/// <summary>
/// Additional content is placed before the first tab
/// </summary>
[Description("before")]
Before,
/// <summary>
/// No additional content is rendered
/// </summary>
[Description("none")]
None,
}