Last change
on this file was 4, checked in by george, 16 years ago |
- Přidáno: Překládací program přímo pro Lazarus namísto Delphi.
- Upraveno: Překladový soubor je nyní kódován v UTF-8.
|
File size:
688 bytes
|
Line | |
---|
1 | unit UItemTranslationForm;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
---|
9 | StdCtrls;
|
---|
10 |
|
---|
11 | type
|
---|
12 |
|
---|
13 | { TItemTranslationForm }
|
---|
14 |
|
---|
15 | TItemTranslationForm = class(TForm)
|
---|
16 | Button1: TButton;
|
---|
17 | Memo1: TMemo;
|
---|
18 | Memo2: TMemo;
|
---|
19 | procedure Button1Click(Sender: TObject);
|
---|
20 | private
|
---|
21 | { private declarations }
|
---|
22 | public
|
---|
23 | { public declarations }
|
---|
24 | end;
|
---|
25 |
|
---|
26 | var
|
---|
27 | ItemTranslationForm: TItemTranslationForm;
|
---|
28 |
|
---|
29 | implementation
|
---|
30 |
|
---|
31 | { TItemTranslationForm }
|
---|
32 |
|
---|
33 | procedure TItemTranslationForm.Button1Click(Sender: TObject);
|
---|
34 | begin
|
---|
35 | Close;
|
---|
36 | end;
|
---|
37 |
|
---|
38 | initialization
|
---|
39 | {$I UItemTranslationForm.lrs}
|
---|
40 |
|
---|
41 | end.
|
---|
42 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.