Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set TextBlock to be entirely bold when DataBound in WPF

I have a databound TextBlock control (which is being used inside a DataTemplate to display items in a ListBox) and I want to make all the text in the control bold. I can't seem to find a property in the properties explorer to set the whole text to bold, and all I can find online is the use of the <Bold> tag inside the TextBlock, but I can't put that in as the data is coming directly from the data source.

There must be a way to do this - but how? I'm very inexperienced in WPF so I don't really know where to look.

like image 494
robintw Avatar asked Feb 03 '09 09:02

robintw


2 Answers

Am I missing something, or do you just need to set the FontWeight property to "Bold"?

<TextBlock FontWeight="Bold" Text="{Binding Foo}" />
like image 172
Matt Hamilton Avatar answered Nov 15 '22 06:11

Matt Hamilton


Rather than just having a TextBlock, try this:

<TextBlock>
  <Bold>
    <Run />
  </Bold>
</TextBlock>

Then databind to the Run.TextProperty instead.

like image 32
user60401 Avatar answered Nov 15 '22 06:11

user60401