Skip to main content
All docs
V25.1
  • 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.v25.1.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