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

TcxCustomNavigatorButtons.Images Property

Specifies the images which can be displayed within the collection’s navigator buttons.

#Declaration

Delphi
property Images: TCustomImageList read; write;

#Property Value

Type
TCustomImageList

#Remarks

The Images property contains a list of images that can be used instead of the default button images. Each navigator button has an ImageIndex property which allows you to select an image from the Images list to be displayed in this button. If the Images property is unassigned, default buttons will display images from the DefaultImages collection, based on button default indexes. Custom buttons will have no images.

In order to use this property, you should:

  • Place an image list on a form;

  • Populate it with appropriate images;

  • Select the required button in the Object Inspector;

  • Assign the list as shown below:

or via code:

DBNavigator1.Buttons.Images := ilMain;
See Also