Skip to main content
All docs
V23.2

TreeViewControl.NodeContentStyle Property

Gets or sets the style applied to node content. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public Style NodeContentStyle { get; set; }

Property Value

Type Description
Style

The style applied to node content.

Remarks

Target Type: LightweightCellEditor

<dxg:TreeViewControl ...>
    <dxg:TreeViewControl.NodeContentStyle>
        <Style TargetType="dxg:LightweightCellEditor">
            <Setter Property="Background" Value="LightBlue"/>
            <Setter Property="Cursor" Value="Hand"/>
        </Style>
    </dxg:TreeViewControl.NodeContentStyle>
</dxg:TreeViewControl>

Use the NodeStyle property to customize the entire node.

See Also