I have a StringCollection in my settings and want to bind 1 of the items to a label.
This is how it works.
xmlns:p="clr-namespace:MyNamespace.Properties"
<Label Content="{Binding Path=MyStringCollection.[2], Source={x:Static p:Settings.Default}}" />
But I want to bind the index to another value and thought that this should work. But it doesnt.
<Label Content="{Binding Path=MyStringCollection.[{Binding SelectedIndex Source={x:Static p:Settings.Default}}], Source={x:Static p:Settings.Default}}" />
Can someone help me?
With stock WPF you'll need to use an
IMultiValueConverter
:Then in your XAML: