I have this label inside ProgressBar
that take it's value form the Progressbar
value and i want to add the char %
after the ProgressBar
value.
I have tried two options that not working:
<Label Content="{Binding Progress}" ContentStringFormat="{}{0} %" />
<Label Content="{Binding Progress, StringFormat={}{0}%}" />