我有一个datagrid比包含的值来自一个stored procedure。所有值都设置为Bold
当单元格内容等于0时,我想使文本正常。
我怎么能用扳机呢?
我已经做了如下的工作,但没有成功:

<DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
            <Setter Property="FontWeight" Value="Bold" />
            <Style.Triggers>
                <Trigger Property="Content" Value="0">
                    <Setter Property="FontWeight" Value="Normal"/>
                </Trigger>
            </Style.Triggers>
    </Style>
</DataGrid.CellStyle>

最佳答案

您不能通过这种方式访问DataGridCell.Content,请根据您的DataTrigger使用DataGrid.SelectedItem.YourProperty,如下所示:

    <DataGrid.CellStyle>
        <Style TargetType="DataGridCell">
            <Setter Property="FontWeight" Value="Bold" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding YourProperty}" Value="0">
                    <Setter Property="FontWeight" Value="Normal"/>
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </DataGrid.CellStyle>

编辑:
假设您的DataGridColumns是基于文本的,那么您可以使用IValueConverter如下:
请注意,如果某些数据网格列不是基于文本的,则此解决方案仍然适用于那些基于文本的列。
xaml:
<Window.Resources>
    <local:FontWeightConverter x:Key="fontWeightConverter"/>
</Window.Resources>


    <DataGrid.CellStyle>
        <Style TargetType="{x:Type DataGridCell}">
            <Style.Setters>
                <Setter Property="FontWeight"
                       Value="{Binding RelativeSource={RelativeSource Self},
                       Path=Content.Text,
                       Converter={StaticResource fontWeightConverter}}" />
            </Style.Setters>
        </Style>
    </DataGrid.CellStyle>

转换器:
public class FontWeightConverter : IValueConverter
{
    public object Convert(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
        if (value != null && value.ToString() == "0")
            return FontWeights.Normal;
        return FontWeights.Bold;
    }

    public object ConvertBack(object value, Type targetType,
        object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

09-08 07:58