I have a datatemplate for listbox:
<DataTemplate>
<Rectangle Width="10" Height="{Binding ???}" Fill="Black" HorizontalAlignment="Center"/>
</DataTemplate>
The ItemSource of the list is set to int[] array. What should I specify in Binding ??? to make the binding path take the concrete value?
Thanks.