GUIFormType.pas 560 B

12345678910111213141516171819202122232425262728293031323334
  1. unit GUIFormType;
  2. interface
  3. uses
  4. Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5. Dialogs, StdCtrls;
  6. type
  7. TfrmGUIFormType = class(TForm)
  8. Button1: TButton;
  9. Label1: TLabel;
  10. optLuaUnit: TRadioButton;
  11. optLuaMacro: TRadioButton;
  12. procedure Button1Click(Sender: TObject);
  13. private
  14. { Private declarations }
  15. public
  16. { Public declarations }
  17. end;
  18. var
  19. frmGUIFormType: TfrmGUIFormType;
  20. implementation
  21. {$R *.dfm}
  22. procedure TfrmGUIFormType.Button1Click(Sender: TObject);
  23. begin
  24. Self.Close;
  25. end;
  26. end.