Skip to main content
A newer version of this page is available. .
All docs
V20.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.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, 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