I have a WPF application. There is a key as Introtext as "My name is John" which is coming from the static resource file "EmployeeResources.resx".
I want to display string as "My name is John" (Is must be bold) in a SINGLE textblock as mention below.
<StackPanel Orientation="Vertical" Grid.Column="2">
<TextBlock Text="{x:Static name:EmployeeResources.Introtext}" />
</StackPanel>
How can I achieve this.