Back to Devexpress

PivotGridField.TreeViewHeaderImage Property

wpf-devexpress-dot-xpf-dot-pivotgrid-dot-pivotgridfield-cea411f5.md

latest2.2 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Wpf.PivotGrid

Declaration

csharp
public ImageSource TreeViewHeaderImage { get; set; }
vb
Public Property TreeViewHeaderImage As ImageSource

Property Value

TypeDescription
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.

xaml
<dxpg:PivotGridControl.Fields>
    <dxpg:PivotGridField Name="fieldSalesPerson" Area="RowArea" 
      FieldName="ProductName" AreaIndex="1" DisplayFolder="Sales Person"
      TreeViewHeaderImage="pack://application:,,,/image/person.ico"/>
</dxpg:PivotGridControl.Fields>
csharp
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

PivotGridField Class

PivotGridField Members

DevExpress.Xpf.PivotGrid Namespace