I have some textblocks composed of Runs. I want the characters within the textblock to be individually selectable like one would expect.
Example XAML:
<TextBlock>
<Run Text="Cant-individually-select" />
<Run Text="Still-Cant-individually-select" />
</TextBlock>
Is there any way to make the run inside the textblock behave like a standalone run? I see there a lot of solutions involving styling a TextBox to look like a TextBlock, but this isn't possible when I need multiple runs.