source: tags/1.0.0/Forms/UFormImages.pas

Last change on this file was 41, checked in by chronos, 7 years ago
  • Modified: Avoid loading images from files by putting them to hidden form as component.
File size: 477 bytes
Line 
1unit UFormImages;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls;
9
10type
11
12 { TFormImages }
13
14 TFormImages = class(TForm)
15 ImageLocomotive: TImage;
16 ImagePassenger: TImage;
17 ImageTunnel: TImage;
18 ImageScreenshot: TImage;
19 private
20 { private declarations }
21 public
22 { public declarations }
23 end;
24
25var
26 FormImages: TFormImages;
27
28implementation
29
30{$R *.lfm}
31
32end.
33
Note: See TracBrowser for help on using the repository browser.