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

TileViewOptionsView.BackgroundColorMode Property

Gets or sets how the View background is painted.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[DefaultValue(BackgroundColorMode.Default)]
[XtraSerializableProperty]
public BackgroundColorMode BackgroundColorMode { get; set; }

#Property Value

Type Default Description
DevExpress.XtraGrid.Views.Tile.BackgroundColorMode Default

A DevExpress.XtraGrid.Views.Tile.BackgroundColorMode enumeration value that specifies how the View background is painted.

#Property Paths

You can access this nested property as listed below:

Object Type Path to BackgroundColorMode
TileView
.OptionsView .BackgroundColorMode

#Remarks

The BackgroundColorMode property accepts the following BackgroundColorMode enumeration values:

  • Skin - the View background is painted with the same color that the currently applied skin uses for all content containers (user controls, panels, etc.).
  • ItemBackground - the View has the same background color as tiles do. Note that this color is also determined by the current application skin; item appearances are ignored.
  • Default - same as the “Skin” option.
See Also