I have been trying (for a few days) to change the font weight in a wpf data grid cell of just one word.
Below is is the xaml which woks fine for changing the whole cell but how I would go about just one word i have no idea (not even sure where to start)
Maybe i need to use a richtextbox instead?
<DataGridTextColumn Width="450"
Header="Message"
Binding="{Binding Path=Element[Message].Value,Mode=TwoWay,UpdateSourceTrigger=LostFocus }" >
<DataGridTextColumn.ElementStyle>
<Style>
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
<Setter Property="TextBlock.FontWeight" Value="Bold" />
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>