Is it possible to have a font background in a wpf textbox ? I don't want to change the textbox background. When the user enters text, the font background should be helpful to the user, e.g. to see a space character. Problem: If the textbox contains a space character only, you won't see it. It would be only noticed by the cursor, when it is focused. How to set the FONT background (and NOT the TextBox background) in a wpf textbox ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I solved this by creating a 2-coloured textbox background brush. The pixel width of the first color (font background) depends upon the text pixel width. The second color (white) fills the rest of the textbox background. The brush is created inside the textchanged event handler. Works fine! |
|||
|
|
|
Fonts aren't visual objects in WPF, so there's no property on any of the font-related properties that will do what you'd like to do. Instead, you should wrap your text in a Border object and place it in a container that will auto size it to the minimum size:
|
|||||
|