Skip to main content

TdxBarColorCombo.Color Example

This example demonstrates how to use a TdxBarColorCombo for applying the font color to a TEdit component. The following code snippet represents the TdxBarColorCombo.OnChange event handler.

procedure TForm1.dxBarColorCombo1Change(Sender: TObject);
begin
  Edit1.Font.Color := dxBarColorCombo1.Color;
end;