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

How to Implement Help for the Customization Form

To include your own custom help for the Customization Form, you should use the Help button placed at the bottom of this form. By default, the Help button is hidden. To make it visible, set the ShowHelpButton property of the bar manager to True. Use the HelpButtonGlyph property to specify the picture drawn on the Help button.

Additionally, you should write an OnHelpButtonClick event handler which responds to the Help button click.

// ...
procedure TForm1.dxBarManagerHelpButtonClick(Sender: TObject);
begin
  WinHelp(0, 'MyHelp.hlp', HELP_CONTENTS, 0);
end;