WPF - '[Unknown]'属性不指向路径'(0)中的DependencyObject。(1)[1]。(2)'

时间:2014-02-16 21:38:48

标签: c# wpf

我在下面的xaml标题中收到错误。在稍微调查xaml时,我发现该错误与使用代理复选框'chkAgent'启用和禁用文本框'txtAgent'有关,但我看不出错误发生的原因。

注意:应用程序运行时没有错误,当我选中并取消选中代理复选框时,文本框会启用和禁用。

<CheckBox IsChecked="{Binding Path=IsAgent, Mode=TwoWay}" IsEnabled="{Binding Path=EnableAgent}" Name="chkAgent" TabIndex="2" />
<TextBox Text="{Binding Path=AgentCode}" IsEnabled="{Binding ElementName=chkAgent, Path=IsChecked}" Name="txtAgent" TabIndex="4" />

0 个答案:

没有答案