mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
25 lines
664 B
C#
25 lines
664 B
C#
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace AntDesign.Select.Internal
|
|||
|
{
|
|||
|
public partial class SelectOptionGroup<TItemValue, TItem>
|
|||
|
{
|
|||
|
private const string ClassNamePrefix = "ant-select-item-group";
|
|||
|
[CascadingParameter] internal Select<TItemValue, TItem> SelectParent { get; set; }
|
|||
|
string _oldGroupName = string.Empty;
|
|||
|
|
|||
|
protected override void OnInitialized()
|
|||
|
{
|
|||
|
SetClassMap();
|
|||
|
base.OnInitialized();
|
|||
|
}
|
|||
|
|
|||
|
protected void SetClassMap()
|
|||
|
{
|
|||
|
ClassMapper.Clear()
|
|||
|
.Add("ant-select-item")
|
|||
|
.Add(ClassNamePrefix);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|