CS :
public static class NavigationManager
{
public static bool IsSomethingSomething{ get{ return true;}}
}
Is this Bindable (one way of course) in any way?
CS :
public static class NavigationManager
{
public static bool IsSomethingSomething{ get{ return true;}}
}
Is this Bindable (one way of course) in any way?
try this :
xmlns:local="clr-namespace:WpfApplication1"
"{x:Static local:YourClass.YourProperty}"
for example :
<Button Content="{x:Static local:Constants.ConstantString}" />