Tagged Questions
34
votes
2answers
15k views
Force textblock to wrap in WPF listbox
I have a WPF listbox which displays messages. It contains an avatar on the left side and the username and message stacked vertically to the right of the avatar. The layout is fine until the message ...
6
votes
1answer
846 views
WPF text Wrap vs WrapWithOverflow
What's the "conceptual" difference between TextWrapping="Wrap" and TextWrapping="WrapWithOverflow" (e.g. for a TextBox)?
In the MSDN page about the class TextBox there is nothing ...
Thank you.
4
votes
2answers
3k views
C#/WPF: Disable Text-Wrap of RichTextBox
Does anyone know how I can disable the text wrapping of a RichTextBox?
E.g. if I have a large string which doesn't fit in the window, the RichTextBox places the part of the string which can't be shown ...
3
votes
1answer
1k views
WPF listbox item not wordwrapping
My ListBox has, amongst other things a description field in it which can be quite long. Instead of having a horizontal scroll bar I want to word wrap it.
It works if I set the MaxWidth but since the ...
2
votes
1answer
978 views
How get a WPF Datagrid with cells that wrap text instead of truncating it?
What must be done to get a WPF Datagrid with cells that wrap text instead of truncating it?
Right now when a text is bigger and don't fit in a colum the text is truncated and users can't see it value ...
2
votes
3answers
2k views
1
vote
1answer
141 views
WPF: Wrapping multi-part text
Currently I'm using a TextBlock to show a single line with an image.
<TextBlock>
<Image Name="StatusImage" Stretch="Fill" MaxWidth="12" MaxHeight="12"
...
1
vote
1answer
102 views
Finding width of characters to do wordwrap
I'm writing a custom texteditor using WPF and am using a stack of TextBlocks to render the lines. That leads me to the problem to find when to wordwrap from one line to the next.
What is the best way ...
0
votes
1answer
46 views
Can I use TextBlock TextTrimming to trim only the first Run, not the whole thing?
I have a TextBlock like this:
<TextBlock TextWrapping="Wrap" TextTrimming="CharacterEllipsis" MaxHeight="50">
<TextBlock.Inlines>
<Run Text="Some text that might be long so ...
0
votes
1answer
166 views
How to reuse Word wrap algorithm in textbox?
I know TextBox/TextBlock already support text word wrap very well. (Windows WPF)
the question is how can I reuse that logic? so I don't need to write an other word wrap util class for this purpose.
...