As background I have a very long ID that too long to display in the given area of the TextBlock. The interesting portion of the ID is the end, that is the rightmost portion.
What I would like to do is have the TextBlock, rather than the text overflowing right and cutting off the rightmost portion, overflow left and cutoff the leftmost portion.
That is given the ID 123456
and a TextBlock with enough space to hold four characters, to get the TextBlock to display 3456
rather than 1234
as it does by default.
I could manually trim my ID for display, but given a variable spaced font that's not ideal. So is there someway to get WPF do change the overflow direction?
Is this the effect you're trying to get? It sounds like it:
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Width="200">
<TextBlock Background="Honeydew" HorizontalAlignment="Right">
The quick brown fox jumped over the lazy dog's back
</TextBlock>
</StackPanel>
</Page>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With