我在下面的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" />