WPF:如何绑定按钮的IsEnabled属性

时间:2010-11-19 11:05:02

标签: c# .net wpf vb.net isenabled

使用WPF,如何将IsEnabled的{​​{1}}属性绑定到网格的选定行的Button值?

因此,每当我的网格选定行发生更改时,该按钮将根据其中一列的值启用/禁用。

1 个答案:

答案 0 :(得分:3)

按钮看起来像这样

<Button Content="Update" IsEnabled="{Binding ElementName=grid, Path=SelectedItem.SomeValue}"/>