Dear developers,
Below is my program with SeekBar creation. After SetValue(50) performing the SeekBar is set to the 100% position:
scd_product_slider = app.CreateSeekBar(0.8);
scd_product_slider.SetRange(0, 100); // Set the range of the SeekBar (e.g., 0 to 100)
scd_product_slider.SetValue(50); // Set an initial value
app.ShowPopup("Slider value: " + scd_product_slider.GetValue());
And when performing GetValue command the Value = 0.
Could you tell pls are we doing something wrong or it is DS problem?
Thank you very much in advance. Have a nice day.