I have a WPF TextBox with a white background. I've given it some Padding so that the text has a "margin" around it (akin to the margins in, say, MS Word).
<TextBox x:Name="MyTextBox" Padding="25" />
Unlike in Word, however, this blank area around the text is not "active" (see color-coded illustration below). Clicking within it (the red section) doesn't move the textbox's caret, nor will it begin a selection. Note, however, that the entire green area is active - even the blank space below the text (meaning you can click within it to move the caret or start a selection)...
So, my question is this: Is there any way to add space around aTextBox that is blank but is also part of the editable area (so that it will react to clicks/selections, like the blank area of the green section does)?
Thanks!
p.s. The closest I've come in my search for an answer was this: How to set the margin on a internal TextBoxView in wpf... However, while increasing the Margin of the inner TextBoxView does increase the space around the text, that space still doesn't seem to be "active" in any way... And it seems like the TextBoxView doesn't have a Padding property, so I can't try that (though I imagine Padding is more likely to be the solution than a Margin)...
