i tried this:
Sets literally Show {Binding Source={StaticResource AppInfoer}, Path=Title}
<MenuItem Header="Show {Binding Source={StaticResource AppInfoer}, Path=Title}"
Command="{StaticResource ShowWindowCommand}" CommandParameter="Open" />
given Header="{Binding Source={StaticResource AppInfoer}, Path=Title}" resolves nicely to “Main App”, how could I successfully
- prepend the literal string “Show “
- to the string output from
{Binding Source={StaticResource AppInfoer}, Path=Title}
im hoping for a no additional code-behind solution, one that involves just an xaml line or two?
Have you tried using StringFormat?