I'm spinning up a ColorDialog
component in WinForms to let the user select a particular custom control's chart's background color and foreground color. Both configuration options are on the same page of the configuration dialog, so I want to set the title of the color dialog to "Background Color" when the dialog is brought up to change the chart's background, and "Grid Color" to change the color of the grid. This will provide a useful UX where the user will be able to look at the title of the chart if they're not sure whether they chose to change the background or grid color.
Unfortunately, the docs don't seem to mention any way to manipulate the ColorDialog
's title. Is it possible to make this change? If so, how?