I need a control that is able to select the text displayed inside (read only) but I also need to be able to format the text with Bold and Italics because it's a journal citation. Furthermore, I'd like the control to be able to size according to the text or content(stretch). Here's an example:
Child and Family Behavior Therapy 26.1 (2004).
The closest I can get is a RichTextBox following this example.  This TextBlock example is also close, but does not allow for font styling in-line (bold, italics, etc..). 
Current RichTextBox solution
    richTextBox1.HorizontalScrollBarVisibility = ScrollBarVisibility.Visible;
    richTextBox1.Document.PageWidth = 1000;
Why this doesn't work: Journals can have long names and with the addition a description it's easy to reach the end of the Page, causing the content to wrap anyway. Conversely, a short-named journal that has no description still has a scroll bar leading to a ton of white space.
Current TextBlock/TextBox solution
    <TextBox Background="Transparent"
     BorderThickness="0"
     Text="{Binding Text, Mode=OneWay}"
     IsReadOnly="True"
     TextWrapping="NoWrap" />
Why this doesn't work: I either use the default TextBlock and am unable to select the text (The user should be able to copy-paste), or use this TextBox binding and lose the styling functionality.
I'm still pretty new to WPF, and have minimal knowledge on how to edit some controls, such as buttons using OverridesDefaultStyle, ControlTemplate etc..  I just can't seem to find a control that has the three properties I need, or a way a control can be customized to do what I want. Any ideas?
 
     
    