wpf-devexpress-dot-xpf-dot-editors-dot-datenavigator-dot-datenavigatorstateappearance-f5fd24b3.md
Gets or sets the thickness of the cell’s border. This is a dependency property.
Namespace : DevExpress.Xpf.Editors.DateNavigator
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public Thickness? BorderThickness { get; set; }
Public Property BorderThickness As Thickness?
| Type | Description |
|---|---|
| Nullable<Thickness> |
A Nullable Thickness value which specifies the cell’s border thickness in pixels.
|
The following code sample specifies Holiday cells’ Background, BorderBrush, BorderThickness , and FontWeight properties:
<Window ...
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
<dxe:DateNavigator>
<dxe:DateNavigator.Appearance>
<dxe:DateNavigatorCellAppearance>
<dxe:DateNavigatorCellAppearance.HolidayState>
<dxe:DateNavigatorStateAppearance Background="FloralWhite"
BorderBrush="Black"
BorderThickness="1"
FontWeight="Thin"/>
</dxe:DateNavigatorCellAppearance.HolidayState>
</dxe:DateNavigatorCellAppearance>
</dxe:DateNavigator.Appearance>
</dxe:DateNavigator>
</Window>
See Also
DateNavigatorStateAppearance Class