mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
16 lines
528 B
Plaintext
16 lines
528 B
Plaintext
<MudDialog>
|
|
<DialogContent>
|
|
<MudGrid>
|
|
<MudItem xs="12">
|
|
<MudTextField Label="Category" @bind-Value="Category" />
|
|
</MudItem>
|
|
<MudItem xs="12">
|
|
<MudTextField Label="Save Path" @bind-Value="SavePath" />
|
|
</MudItem>
|
|
</MudGrid>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
<MudButton Color="Color.Primary" OnClick="Submit">Add</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |