Last change
on this file was 2, checked in by chronos, 12 years ago |
- Přidáno: Základní kostra projektu.
- Přidáno: Knihovna synapse.
|
File size:
1.3 KB
|
Line | |
---|
1 | object MainForm: TMainForm
|
---|
2 | Left = 276
|
---|
3 | Top = 417
|
---|
4 | Width = 503
|
---|
5 | Height = 270
|
---|
6 | Caption = 'Simple TFTP-Server'
|
---|
7 | Color = clBtnFace
|
---|
8 | Font.Charset = DEFAULT_CHARSET
|
---|
9 | Font.Color = clWindowText
|
---|
10 | Font.Height = -14
|
---|
11 | Font.Name = 'MS Sans Serif'
|
---|
12 | Font.Style = []
|
---|
13 | OldCreateOrder = False
|
---|
14 | Position = poScreenCenter
|
---|
15 | OnCreate = FormCreate
|
---|
16 | DesignSize = (
|
---|
17 | 495
|
---|
18 | 238)
|
---|
19 | PixelsPerInch = 120
|
---|
20 | TextHeight = 16
|
---|
21 | object Label1: TLabel
|
---|
22 | Left = 10
|
---|
23 | Top = 199
|
---|
24 | Width = 30
|
---|
25 | Height = 16
|
---|
26 | Anchors = [akLeft, akBottom]
|
---|
27 | Caption = 'Path:'
|
---|
28 | end
|
---|
29 | object Log: TMemo
|
---|
30 | Left = 8
|
---|
31 | Top = 0
|
---|
32 | Width = 481
|
---|
33 | Height = 186
|
---|
34 | Anchors = [akLeft, akTop, akRight, akBottom]
|
---|
35 | ScrollBars = ssVertical
|
---|
36 | TabOrder = 0
|
---|
37 | end
|
---|
38 | object BExit: TButton
|
---|
39 | Left = 483
|
---|
40 | Top = 261
|
---|
41 | Width = 86
|
---|
42 | Height = 31
|
---|
43 | Anchors = [akBottom]
|
---|
44 | Caption = 'E&xit'
|
---|
45 | TabOrder = 1
|
---|
46 | OnClick = BExitClick
|
---|
47 | end
|
---|
48 | object BAbout: TButton
|
---|
49 | Left = 37
|
---|
50 | Top = 261
|
---|
51 | Width = 86
|
---|
52 | Height = 31
|
---|
53 | Anchors = [akBottom]
|
---|
54 | Caption = '&About'
|
---|
55 | TabOrder = 2
|
---|
56 | OnClick = BAboutClick
|
---|
57 | end
|
---|
58 | object PathEdit: TEdit
|
---|
59 | Left = 72
|
---|
60 | Top = 196
|
---|
61 | Width = 413
|
---|
62 | Height = 21
|
---|
63 | Anchors = [akLeft, akRight, akBottom]
|
---|
64 | TabOrder = 3
|
---|
65 | Text = 'C:\'
|
---|
66 | end
|
---|
67 | end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.