mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 20:09:06 +00:00
11 lines
450 B
Plaintext
11 lines
450 B
Plaintext
@inherits ConfigurationBase
|
|
@typeparam T
|
|
|
|
<MudSelect T="T" Value="@this.SelectedValue()" Strict="@true" Disabled="@this.Disabled()" Margin="Margin.Dense" Label="@this.OptionDescription" Class="@GetClass" Variant="Variant.Outlined" HelperText="@this.OptionHelp" ValueChanged="@this.OptionChanged">
|
|
@foreach (var data in this.Data)
|
|
{
|
|
<MudSelectItem Value="@data.Value">
|
|
@data.Name
|
|
</MudSelectItem>
|
|
}
|
|
</MudSelect> |