Skip to main content
A newer version of this page is available. .

Badge.Padding Property

Gets or sets the inner indents around the BadgeControl. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v19.2.dll

Declaration

public Thickness? Padding { get; set; }

Property Value

Type Description
Nullable<Thickness>

A Nullable Thickness that represents the inner indents (in pixels) around the BadgeControl.

Remarks

The following code sample sets the Badge.Padding property to 10,3,10,3:

WPF Badges - Padding Property

<dx:SimpleButton ...>
  <dx:Badges.Badge>
    <dx:Badge Content="10" Padding="10,3,10,3" />
  </dx:Badges.Badge>
</dx:SimpleButton>
See Also