2026-02-24 16:21:50 +00:00
|
|
|
<MudStack Row="true" Class='@this.MergeClasses(this.Class, "mb-3")' Style="@this.Style">
|
2025-11-10 16:01:49 +00:00
|
|
|
<MudSelect
|
2025-11-11 14:57:15 +00:00
|
|
|
T="string"
|
|
|
|
|
Value="@this.Value"
|
|
|
|
|
ValueChanged="@(val => this.OnValueChanged(val))"
|
2025-11-10 16:01:49 +00:00
|
|
|
Label="@this.Label"
|
|
|
|
|
Placeholder="@this.Default.Value"
|
|
|
|
|
AdornmentIcon="@this.Icon"
|
|
|
|
|
Adornment="Adornment.Start"
|
|
|
|
|
Variant="Variant.Outlined"
|
2025-11-11 14:57:15 +00:00
|
|
|
Margin="Margin.Dense"
|
|
|
|
|
MultiSelection="false"
|
|
|
|
|
>
|
|
|
|
|
@foreach (var item in Items)
|
|
|
|
|
{
|
|
|
|
|
<MudSelectItem Value="@item.Value">
|
|
|
|
|
@item.Display
|
|
|
|
|
</MudSelectItem>
|
|
|
|
|
}
|
2025-11-10 16:01:49 +00:00
|
|
|
</MudSelect>
|
2026-02-24 16:21:50 +00:00
|
|
|
</MudStack>
|