0

我有一个带有复选框和其他文本框的 DataGrid。

   <DataGrid AutoGenerateColumns="False" Height="170" Name="dataGrid1" Width="527"  OpacityMask="#FF161A1A" BorderBrush="#FFB7B39D" Background="LightYellow" RowBackground="LightGray" AlternatingRowBackground="#FFFFFFF5" BorderThickness="10" CanUserResizeRows="False" CanUserReorderColumns="False" CanUserResizeColumns="True" CanUserSortColumns="False" FontFamily="Segoe UI" FontSize="13" CanUserAddRows="False">

       <DataGrid.Columns>
            <DataGridCheckBoxColumn Header="" Binding="{Binding BoolProperty, Mode=TwoWay}" />
            <DataGridTextColumn Header="" Binding="{Binding header}" MinWidth="108" IsReadOnly="True" />
            <DataGridTextColumn Header="Number of Cases" Binding="{Binding cases}" >
            <DataGridTextColumn.EditingElementStyle>
                  <Style TargetType="TextBox">
                        <Setter Property="IsEnabled" Value="{Binding Path=BoolProperty, Mode=TwoWay}" />
                 </Style>
           </DataGridTextColumn.EditingElementStyle>
          </DataGridTextColumn>

复选框列绑定到“BoolProperty”。如果 BoolProperty 为假,我希望禁用文本框“案例数”,如果 BoolProperty 为真,则启用。我尝试在 TExtBox 中添加 IsEnabled,但它不起作用。我哪里错了?

4

2 回答 2

1

对于仅 XAML 的方法,请改用模板列。IsReadOnly 在单元级别不可绑定。由于该链接不提供实现,我会的。

<DataGridTemplateColumn>
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Path=myProperty}" />
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
    <DataGridTemplateColumn.CellEditingTemplate>
        <DataTemplate>
            <TextBox IsEnabled="{Binding Path=myBool}" Text="{Binding Path=myProperty, Mode=TwoWay}" />
        </DataTemplate>
    </DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
于 2013-08-26T12:57:57.053 回答
0

我在一个项目中使用了我的LoadingRow事件DataGrid来检查特定状态。也许这样的事情可以帮助:

void dataGrid_LoadingRow(object sender, DataGridRowEventArgs e)
{
    checkRow(e.Row);
}

private void checkRow(DataGridRow dgRow)
{
    if (dgRow == null)
        return;

    var item = dgRow.Item as MyItemClass;
    if (item != null && item.BoolProperty)
    {
        ...
    }
    else
    {
        ...
    }
}

在您的情况下,您可以在 if-else 结构中启用/禁用您的单元格。

希望能帮助到你。

于 2013-08-26T12:16:06.743 回答