mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-30 02:58:13 +08:00
5875929a89
* refactor(module: tabs): improve rendering * fix ForceRender & change constants to enums * fix animated * fix left extra content * add Centered feature * fix scroll distance * fix scroll gap * fix index out of range * fix tests * fix scroll distance * fix dropdown button position * fix ping left & right * hide the dropdown button
17 lines
257 B
C#
17 lines
257 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public enum TabPosition
|
|
{
|
|
Top = 0,
|
|
Right = 1,
|
|
Bottom = 2,
|
|
Left = 3
|
|
}
|
|
}
|