2019-10-09 10:46:11 +00:00
|
|
|
unit main;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, JvGammaPanel,
|
|
|
|
JvTypes;
|
|
|
|
|
|
|
|
type
|
|
|
|
|
2019-10-09 10:50:44 +00:00
|
|
|
{ TDemoForm }
|
2019-10-09 10:46:11 +00:00
|
|
|
|
2019-10-09 10:50:44 +00:00
|
|
|
TDemoForm = class(TForm)
|
2019-10-09 10:46:11 +00:00
|
|
|
JvGammaPanel1: TJvGammaPanel;
|
2019-10-09 10:50:44 +00:00
|
|
|
DemoLabel: TLabel;
|
2019-10-09 10:46:11 +00:00
|
|
|
procedure JvGammaPanel1ChangeColor(Sender: TObject; Foreground,
|
|
|
|
Background: TColor);
|
|
|
|
private
|
|
|
|
|
|
|
|
public
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
2019-10-09 10:50:44 +00:00
|
|
|
DemoForm: TDemoForm;
|
2019-10-09 10:46:11 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.lfm}
|
|
|
|
|
2019-10-09 10:50:44 +00:00
|
|
|
{ TDemoForm }
|
2019-10-09 10:46:11 +00:00
|
|
|
|
2019-10-09 10:50:44 +00:00
|
|
|
procedure TDemoForm.JvGammaPanel1ChangeColor(Sender: TObject; Foreground,
|
2019-10-09 10:46:11 +00:00
|
|
|
Background: TColor);
|
|
|
|
begin
|
2019-10-09 10:50:44 +00:00
|
|
|
DemoLabel.Color := Background;
|
|
|
|
DemoLabel.Font.Color := Foreground;
|
2019-10-09 10:46:11 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|