Badge.HorizontalAlignment Property
Gets or sets the BadgeControl‘s horizontal alignment. This is a dependency property.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
HorizontalAlignment | Right | A HorizontalAlignment enumeration value that specifies the badge’s horizontal alignment. |
Remarks
The following table lists the combinations of the Badge.HorizontalAlignment and Badge.HorizontalAnchor values:
| HorizontalAnchor | |||
---|---|---|---|---|
HorizontalAlignment | ||||
Left | Center | Right | Stretch | |
Left | ||||
Center | ||||
Right | ||||
Stretch |
Note
When the Badge.HorizontalAlignment property is Stretch, the Badge.HorizontalAnchor property is ignored.
The following code sample sets the Badge.HorizontalAlignment and Badge.HorizontalAnchor properties to Left:
<dx:SimpleButton ...>
<dx:Badges.Badge>
<dx:Badge Content="10" HorizontalAlignment="Left" HorizontalAnchor="Left" />
</dx:Badges.Badge>
</dx:SimpleButton>
See Also