Skip to main content

GraphicsCache(PaintEventArgs, XPaint) Constructor

Creates an instance of the GraphicsCache class.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public GraphicsCache(
    PaintEventArgs e,
    XPaint paint
)

Parameters

Name Type Description
e PaintEventArgs

A PaintEventArgs object that contains data used for painting. This value is assigned to the GraphicsCache.PaintArgs property.

paint DevExpress.Utils.Paint.XPaint

A DevExpress.Utils.Paint.XPaint object providing painting methods used in the NavBarControl control. This value is assigned to the GraphicsCache.Paint property.

Remarks

The constructor initializes newly created object properties with parameter values. It also initializes four hash tables used to store requested pens, solid and gradient brushes and fonts.

The Graphics property value is assigned to the GraphicsCache.Graphics property.

See Also