Setting Label Text in XAML to string constant
I have a single string constant that I have to re-use in several different XAML layouts, so instead of duplicating it, I'd like to just bind it to a constant. I have a class which defines the string in C#: public static class StringConstants { public static string MyString { get { return "SomeConstant"; } } } I'd like to be able to set the value through XAML via something like the following: <Label Content="{Binding local:StringConstants.MyString}"/> Is this achievable? I've searched for examples, but I've only found samples that involve some tinkering in the code-behind and I'm wondering if