Was ich will ist so etwas:
String.Format("Value: {0:%%}.", 0.8526)
Wo %% ist dieser Formatanbieter oder was auch immer ich suche. Sollte ergeben : Value: %85.26.
.
Ich brauche es grundsätzlich für die Wpf-Bindung, aber zuerst lösen wir das allgemeine Formatierungsproblem:
<TextBlock Text="{Binding Percent, StringFormat=%%}" />
P
Formatierung?