0

我试图创建一个依赖属性“IsReadOnly”,以在某些事件后自动将表单中的所有文本框设置为只读。

该属性是在带有文本框的窗口后面的代码中设置的,如下所示:

public static readonly DependencyProperty IsReadOnlyProperty =   
        DependencyProperty.Register("IsReadOnly",
        typeof(bool), 
        typeof(MainWindow), 
        new PropertyMetadata()); 

public bool IsReadOnly
{
  get { return (bool)GetValue(IsReadOnlyProperty); }
  set { SetValue(IsReadOnlyProperty, value);       }
}

文本框的 Xaml 代码与此类似:

<TextBox Text="{numBind:NumericFormatBinding Path=BudgetStatement.OpExpTotalByFunction}"
                   IsReadOnly="{Binding Path=IsReadOnly,
                RelativeSource={RelativeSource Mode=FindAncestor, 
                AncestorType=Window}, 
                   Mode=TwoWay}" 
         Name="txtOpExpByProgram" />

但它不起作用。我仍然可以在文本框中编辑值。我收到以下输出错误: System.Windows.Data Error: 40 : BindingExpression path error: 'IsReadOnly' property not found on 'object' ''ListCollectionView' (HashCode=54963679)'. BindingExpression:Path=IsReadOnly; DataItem='ListCollectionView' (HashCode=54963679); target element is 'TextBox' (Name=''); target property is 'IsReadOnly' (type 'Boolean') 我不知道足够的 wpf 来正确理解此错误,但它似乎与 ListCollectionView 有关 - 但我没有尝试将属性附加到 ListCollectionView 所以我'米卡住了。

谷歌搜索表明这可能是由于 DataContext 和依赖属性需要特殊处理(http://stackoverflow.com/questions/8497841/dependency-property-and-binding-error),或者 PropertyMetaData 应该是一个框架(或 UI ) 属性元数据。

谁能指出我正确的方向以找出什么不起作用?

蒂亚

亚历克斯

ps: numbind 只是在所有文本框中设置字符串格式

4

1 回答 1

0

阅读评论后,将所有者类型从 更改MainWindowBudgetMainWindow

public static readonly DependencyProperty IsReadOnlyProperty =   
        DependencyProperty.Register("IsReadOnly",
        typeof(bool), 
        typeof(BudgetMainWindow), 
        new PropertyMetadata()); 
于 2012-08-03T10:46:45.823 回答