我在绑定 TextBox 的IsEnabled
属性时遇到问题。我在这个论坛上看到了一些帖子,基于这些帖子下面的代码应该可以工作(至少这是我的想法)。但是,当我运行应用程序时,对IsNumberEnabled
属性的调用只执行一次——就在加载相应的视图之前。有人可以帮我看看吗。谢谢。
xml:
<Textbox Text="{Binding Path=Number, Mode=TwoWay}" IsEnabled="{Binding Path=IsNumberEnabled}" ... />
模型视图:
public bool IsNumberEnabled
{
get { return ... condition ....; } }