How to set WPF string format as percent wihout multiplying by 100?
Another solution is to wrap the %
in single quotes, and put it inside the curley brackets:
<TextBlock Text="{Binding Percentage, StringFormat={}{0:#0.00'%'}}"/>
"{Binding Path=Percentage, StringFormat={}{0}%}"