PivotGridField.HeaderImage Property
In This Article
Gets or sets an image displayed within the Pivot Grid’s field header. This is a dependency property.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll
NuGet Package: DevExpress.Wpf.PivotGrid
#Declaration
public ImageSource HeaderImage { get; set; }
#Property Value
Type | Description |
---|---|
Image |
A System. |
#Remarks
The following example shows how to set the product.ico icon to the Product Name field. This icon is located in the image folder of the current project.
using System.Windows.Media.Imaging;
public MainWindow() {
// ...
BitmapImage logo = new BitmapImage();
logo.BeginInit();
logo.UriSource = new Uri("pack://application:,,,/image/product.ico");
logo.EndInit();
fieldProduct.HeaderImage = logo;
}
See Also