@using AntDesign.Internal @using AntDesign.Select.Internal @namespace AntDesign @inherits AntInputComponentBase @typeparam TItemValue @typeparam TItem
@if (SelectOptions != null) {
@SelectOptions
} else if (SelectOptions == null && DataSource != null) {
@{ @if (!IsGroupingEnabled) { foreach (var selectOption in SortedSelectOptionItems) { } } else { } }
} @if (AllOptionsHidden()) {
@if (NotFoundContent != null) { @NotFoundContent } else { }
} @if (DropdownRender != null) { @DropdownRender(default) }