<toolkit:DoubleUpDown Minimum="{Binding Path=ManageScalingFactorsCollection.MinFactor}"
Maximum="{Binding Path=ManageScalingFactorsCollection.MaxFactor}"
Value="{Binding Path=ManageScalingFactorsCollection.FactorForSingle.MinFactor,
UpdateSourceTrigger=PropertyChanged, Delay={StaticResource DelayExecuteMiliseconds} }"
Increment="{Binding Path=ManageScalingFactorsCollection.MinStep}" Margin="0,0,5,0" Width="70"
HorizontalContentAlignment="Left"/>
I would like to change my code to bind DoubleUpDown to a list or double[] or DoubleCollection. The problem is that i have a collection of doubles which is predefined and the step/increment isn't constant.
for example {0.1, 0.2, 0.4, 0.5, 0.6, 0.89,1.005} Is there a way to do so ?