i've got a INotifyPropertyChanged-abled class and thought it would be a good idea to use:
<Image Source="{Binding myfilename, StringFormat='FixedPath/{0}.png'}" />
so whenever i would change myfilename in source, i'd get the corresponding image in my wpf gui.
it compiles. but in the console i get the error that a TargetDefaultValueConverter converter failed to convert the value of myfilename. binding works ok. only the stringformat seems not to be applied.
what am i missing here?