Last change
on this file was 2, checked in by chronos, 16 months ago |
- Added: Initial development version.
|
File size:
277 bytes
|
Line | |
---|
1 | unit FormScreen;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls;
|
---|
7 |
|
---|
8 | type
|
---|
9 |
|
---|
10 | { TFormScreen }
|
---|
11 |
|
---|
12 | TFormScreen = class(TForm)
|
---|
13 | PaintBox1: TPaintBox;
|
---|
14 | private
|
---|
15 |
|
---|
16 | public
|
---|
17 |
|
---|
18 | end;
|
---|
19 |
|
---|
20 | var
|
---|
21 | FormScreen: TFormScreen;
|
---|
22 |
|
---|
23 | implementation
|
---|
24 |
|
---|
25 | {$R *.lfm}
|
---|
26 |
|
---|
27 | end.
|
---|
28 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.