Skip to main content

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

TileView.Appearance Property

Provides access to appearance settings used to paint this TileView.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[DXCategory("Appearance")]
[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
[XtraSerializablePropertyId(1)]
public TileViewAppearances Appearance { get; }

#Property Value

Type Description
DevExpress.XtraGrid.Views.Tile.TileViewAppearances

A DevExpress.XtraGrid.Views.Tile.TileViewAppearances object that contains appearance settings used to paint this TileView.

#Remarks

The Appearance property allows you to modify the appearance of the TileView itself, as well as the appearance of group captions and tiles in all their visual states (normal, hovered, pressed and checked) in this view. Item appearance set through the Appearance property are shared by all tiles that belong to the view. You can handle the TileView.ItemCustomize event to get a specific tile and use its TileViewItem.AppearanceItem property to override these global appearance settings.

The figure below illustrates group captions with custom appearance settings applied.

TileView - Appearance Group Text

See Also