Files
qbtmud/Lantean.QBTMudBlade/Components/Dialogs/SliderFieldDialog.razor
2024-04-22 14:15:07 +01:00

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>