绑定到静态类中的静态属性

时间:2013-08-15 17:42:52

标签: wpf binding

CS:

   public static class NavigationManager 
   {  
       public static bool IsSomethingSomething{ get{  return true;}} 
   }

这种Bindable(当然是一种方式)吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

xmlns:local="clr-namespace:WpfApplication1"

"{x:Static local:YourClass.YourProperty}"

例如:

<Button Content="{x:Static local:Constants.ConstantString}" />