TextBlock.Padding Property
Definition
public:
property Thickness Padding { Thickness get(); void set(Thickness value); };
Thickness Padding();
void Padding(Thickness value);
public Thickness Padding { get; set; }
Public Property Padding As Thickness
<TextBlock Padding="uniform"/>
- or -
<TextBlock Padding="left&Right,top&Bottom"/>
- or -
<TextBlock Padding="left,top,right,bottom"/>
Property Value
A Thickness structure that specifies the amount of padding to apply.
Remarks
A related property is Margin (a property of FrameworkElement ). For more info about the relationship between margin and padding, see Alignment, margin, and padding or Define layouts with XAML.