按钮启用绑定到组合框

时间:2018-07-07 15:12:00

标签: c# xaml property-binding

我需要禁用一个按钮,直到3个文本框为空并且在组合框上没有选择。我编写了以下XAML代码:

Undefined 

绑定到文本框有效,但组合框无效。我应该写什么?谢谢

1 个答案:

答案 0 :(得分:1)

<DataTrigger Binding="{Binding SelectedIndex, ElementName=cmb}" Value="-1">
         <Setter Property="IsEnabled" Value="False" />
  </DataTrigger>

未选择任何项目时,SelectedIndex将为-1。