I get text from DB in single line. For example "Hello my name is the Developer". I need the part of this text will be in bold and put it in TextBlock.
For code I use:
overview_text.Text = overView;
Where overview_text TextBlock is TextBlock and overView is string from db.
I can alter the DB string as I wish but I need single string, for example what I need is:
"Hello my <bold> name </bold> is the Developer"
Can you please help me with this?