mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-29 04:59:46 +00:00
8 lines
397 B
Plaintext
8 lines
397 B
Plaintext
<MudMenu StartIcon="@Icons.Material.Filled.Person4" EndIcon="@Icons.Material.Filled.KeyboardArrowDown" Label="@this.CurrentProfile.Name" Variant="Variant.Filled" Color="Color.Default" Class="@this.MarginClass">
|
|
@foreach (var profile in this.Profiles())
|
|
{
|
|
<MudMenuItem OnClick="() => this.SelectionChanged(profile)">
|
|
@profile.Name
|
|
</MudMenuItem>
|
|
}
|
|
</MudMenu> |