Remove TextBox Inner Padding?

padding, textbox, wpf

Solution

You can set negative values for padding.

e.g.

<TextBox  Padding="-2" Width="100" Height="18"></TextBox>

It will look like

Problem

How can the padding (as shown in red) be removed from the TextBox?

Original source