Skip to main content
Tag

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridField.TreeViewHeaderImage Property

Gets or sets an image displayed within the field header in the Field List.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public ImageSource TreeViewHeaderImage { get; set; }

#Property Value

Type Description
ImageSource

A ImageSource object specifying the image displayed within a field header in the Field List.

#Remarks

The following example shows how to set the person.ico icon to the Sales Person field. The icon is located in the image folder of the current project.

pivot-tree-view-header-image

using System.Windows.Media.Imaging;

public MainWindow() {
    // ...
    BitmapImage logo = new BitmapImage();
    logo.BeginInit();
    logo.UriSource = new Uri("pack://application:,,,/image/person.ico");
    logo.EndInit();

    fieldSalesPerson.DisplayFolder = "Sales Person"
    fieldSalesPerson.HeaderImage = logo;
}
See Also