Is it possible to display the text in a TextBlock vertically so that all letters are stacked upon each other (not rotated with LayoutTransform)?
|
Nobody has yet mentioned the obvious and trivial way to stack the letters of an arbitrary string vertically (without rotating them) using pure XAML:
This simply lays out the text vertically by recognizing the fact that the string is an IEnumerable and so ItemsControl can treat each character in the string as a separate item. The default panel for ItemsControl is a StackPanel, so the characters are laid out vertically. Note: For precise control over horizontal positioning, vertical spacing, etc, the ItemContainerStyle and ItemTemplate properties can be set on the ItemsControl. |
|||||||||||
|
|
Just in case anybody still comes across this post... here is a simple 100% xaml solution.
|
|||||||||
|
|
I don't think there is a straighforward of doing this withought changing the way the system inherently laysout text. The easiest solution would be to change the width of the textblock and supply a few extra properties like this:
This is hacky, but it does work. |
|||
|
|
|
It's doable: Your
Then add
(Uses |
|||||||||
|
|
Below XAML code changes the angle of text displayed in a textblock.
|
||||
|
|
|
the accepted answer suggested by Ray Burns does not work for me on .net 4.0. Here is how I did it: pull in the mscorlib
put in your usercontrol/window/page resources
and use it like this
hope it helps! |
|||||
|
|
|
Here's a way to insert a '\n' after every character in the text of the TextBlock, that way making it display vertically:
Then, in the Loaded event handler, you say:
That solution was proposed by Lette, but I believe my implementation incurs less overhead. |
|||||
|
|
make the text container's max width to allow for one char only and wrap the text:
|
||||
|
|
Make an image and fill the block with the image, use photoshop or something designed to manipulate text instead of fiddling in code ? |
|||
|
|
|
This code allows to have vertical text stacking and horizontal centered letters.
|
|||
|
|
<ItemsControl ItemsSource="..." />(see my answer below for details). Note that this question is not related to the baseline alignment problem you mention in your Microsoft feedback. – Ray Burns Jan 19 '10 at 4:01