mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
18 lines
566 B
Plaintext
18 lines
566 B
Plaintext
@typeparam T
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudGrid>
|
|
<MudItem xs="12">
|
|
<MudNumericField Label="@Label" Value="@Value" Min="Min" Max="Max" />
|
|
</MudItem>
|
|
<MudItem xs="12">
|
|
<MudSlider ValueLabel="true" Value="@Value" Min="Min" Max="Max" />
|
|
</MudItem>
|
|
</MudGrid>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">Cancel</MudButton>
|
|
<MudButton Color="Color.Primary" OnClick="Submit">Save</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |