ColorDialog
Represents a common dialog box that displays available colors along with controls that enable the user to define custom colors.
Last updated
Was this helpful?
Was this helpful?
public partial class CustomFolderBrowserDialogUI : FolderBrowserDialogUI
{
public CustomFolderBrowserDialogUI(FolderBrowserDialog folderDialog) : base(folderDialog)
{
this.HeaderBackColor = Color.Green;
this.buttonOK.BackColor = Color.Green;
this.buttonCancel.BackColor = Color.Green;
}
}