2
0

umain.pas 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. unit umain;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls,
  6. BCRadialProgressBar, BCLabel, BGRASpriteAnimation, BCMDButton;
  7. type
  8. { TForm1 }
  9. TForm1 = class(TForm)
  10. BCRadialProgressBar1: TBCRadialProgressBar;
  11. BGRASpriteAnimation1: TBGRASpriteAnimation;
  12. Label1: TLabel;
  13. Label10: TLabel;
  14. Label11: TLabel;
  15. Label2: TLabel;
  16. Label3: TLabel;
  17. Label4: TLabel;
  18. Label5: TLabel;
  19. Label7: TLabel;
  20. Label8: TLabel;
  21. Label9: TLabel;
  22. BCMDButton1: TBCMDButton;
  23. BCMDButton2: TBCMDButton;
  24. BCMDButton3: TBCMDButton;
  25. BCMDButton4: TBCMDButton;
  26. Panel1: TPanel;
  27. Panel2: TPanel;
  28. Panel3: TPanel;
  29. Panel4: TPanel;
  30. Panel5: TPanel;
  31. procedure FormCreate(Sender: TObject);
  32. private
  33. public
  34. end;
  35. var
  36. Form1: TForm1;
  37. implementation
  38. {$R *.lfm}
  39. { TForm1 }
  40. procedure TForm1.FormCreate(Sender: TObject);
  41. begin
  42. {$ifdef windows}
  43. //DoubleBuffered := True;
  44. {$endif}
  45. end;
  46. end.