2025-01-01 14:49:27 +00:00
|
|
|
<MudStack Row="@true" Spacing="3" Class="mb-3" StretchItems="StretchItems.None" AlignItems="AlignItems.Center">
|
|
|
|
<MudTextField
|
|
|
|
T="string"
|
|
|
|
Text="@this.Directory"
|
|
|
|
Label="@this.Label"
|
|
|
|
ReadOnly="@true"
|
2025-01-13 18:51:26 +00:00
|
|
|
Validation="@this.Validation"
|
2025-01-01 14:49:27 +00:00
|
|
|
Adornment="Adornment.Start"
|
|
|
|
AdornmentIcon="@Icons.Material.Filled.Folder"
|
|
|
|
UserAttributes="@SPELLCHECK_ATTRIBUTES"
|
|
|
|
Variant="Variant.Outlined"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<MudButton StartIcon="@Icons.Material.Filled.FolderOpen" Variant="Variant.Outlined" Color="Color.Primary" Disabled="this.Disabled" OnClick="@this.OpenDirectoryDialog">
|
|
|
|
Choose Directory
|
|
|
|
</MudButton>
|
|
|
|
</MudStack>
|