标签: c# .net wpf vb.net isenabled
使用WPF,如何将IsEnabled的{{1}}属性绑定到网格的选定行的Button值?
IsEnabled
Button
因此,每当我的网格选定行发生更改时,该按钮将根据其中一列的值启用/禁用。
答案 0 :(得分:3)
按钮看起来像这样
<Button Content="Update" IsEnabled="{Binding ElementName=grid, Path=SelectedItem.SomeValue}"/>