Is it possible to change the ContentStringFormat property of a Label in code?
Take this XAML:
<Label ContentFormatString="Hello {0}" Content="John" x:Name="MyLabel" />
And this C#:
MyLabel.ContentFormatString = "Bye {0}";
When you debug this, you will see the property's value actually changes, but this is not visualized in the UI.
Is this possible?
Maybe not very elegant, but this works: