Slider
BptSlider
The BptSlider component provides a range slider with a customizable fill, value display, tick marks, min/max labels, and support for multiple sizes and colors.
Slider Parameters
Value: 50
Current Configuration
📋
The BptSlider component provides a range slider with a customizable fill, value display, tick marks, min/max labels, and support for multiple sizes and colors.
Value: 50
<BptSlider @bind-Value="sliderValue"
Size="BptComponentSize.Medium"
OnValueChanged="HandleValueChanged" />
@code {
private double sliderValue = 50;
private void HandleValueChanged(double newValue)
{
Console.WriteLine($"Value changed to: {newValue}");
}
}