Files
SignauxComplexes/UnitConfigTCO.pas
f1iwq2 2791b86c8f V1.44
2020-03-21 14:23:29 +01:00

40 lines
646 B
ObjectPascal

unit UnitConfigTCO;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TFormConfigTCO = class(TForm)
ButtonOK: TButton;
Label1: TLabel;
Edit1: TEdit;
Edit2: TEdit;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
LabelNbCellX: TLabel;
LabelNbCellY: TLabel;
procedure ButtonOKClick(Sender: TObject);
private
{ Déclarations privées }
public
{ Déclarations publiques }
end;
var
FormConfigTCO: TFormConfigTCO;
implementation
{$R *.dfm}
procedure TFormConfigTCO.ButtonOKClick(Sender: TObject);
begin
close;
end;
end.