mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 17:49:05 +00:00
11 lines
409 B
Plaintext
11 lines
409 B
Plaintext
|
@typeparam T
|
||
|
|
||
|
@if (this.ShowProgressAnimation)
|
||
|
{
|
||
|
<div class="pa-1">
|
||
|
<MudProgressLinear Color="Color.Primary" Indeterminate="true"/>
|
||
|
</div>
|
||
|
}
|
||
|
<div class="pa-6">
|
||
|
<MudSlider T="int" Disabled="@true" Value="@this.StepValue" Min="@this.process.Min" Max="@this.process.Max" TickMarks="@true" Size="Size.Large" Variant="Variant.Filled" TickMarkLabels="@this.process.Labels" Class="mb-12"/>
|
||
|
</div>
|