1

使用 WPF 如何将IsEnableda 的属性绑定Button到我的网格的选定行的DataGridCheckBoxColumn值?

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

4

1 回答 1

3

按钮看起来像这样

<Button Content="Update" IsEnabled="{Binding ElementName=grid, Path=SelectedItem.SomeValue}"/>
于 2010-11-19T11:10:03.700 回答