This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
About.dfm
90 lines (90 loc) · 1.58 KB
/
About.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
object FormAbout: TFormAbout
Left = 259
Top = 106
BorderStyle = bsDialog
Caption = 'About XWE'
ClientHeight = 209
ClientWidth = 313
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object l1: TLabel
Left = 16
Top = 8
Width = 142
Height = 13
Caption = 'XWE - eXtendable Wad Editor'
end
object l2: TLabel
Left = 16
Top = 24
Width = 99
Height = 13
Caption = 'Developed by Csabo'
end
object l3: TLabel
Left = 16
Top = 88
Width = 281
Height = 81
AutoSize = False
end
object lv: TLabel
Left = 168
Top = 8
Width = 89
Height = 17
AutoSize = False
end
object le: TLabel
Left = 16
Top = 48
Width = 24
Height = 13
Caption = 'Email'
end
object lw: TLabel
Left = 16
Top = 64
Width = 39
Height = 13
Caption = 'Website'
end
object cmdOK: TButton
Left = 119
Top = 181
Width = 75
Height = 23
Caption = 'OK'
TabOrder = 0
OnClick = cmdOKClick
end
object editEmail: TEdit
Left = 64
Top = 48
Width = 145
Height = 15
BorderStyle = bsNone
Color = clBtnFace
TabOrder = 1
Text = '[email protected]'
end
object editWebsite: TEdit
Left = 64
Top = 64
Width = 145
Height = 15
BorderStyle = bsNone
Color = clBtnFace
TabOrder = 2
Text = 'http://doomworld.com/xwe'
end
end