Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

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