I added a trackbar on a Winform project with C#.
mySlider.Minimum = 0;
mySlider.Maximum = 200;
mySlider.Value = 30;
mySlider.SmallChange = 10;
mySlider.LargeChange = 10;
mySlider.TickFrequency = 10;
I would like to be able to select only ten multiples value.
I don't found a solution in order to do this.
What's the best way please ?