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