-
Notifications
You must be signed in to change notification settings - Fork 2
/
CmdEdig.dfm
61 lines (61 loc) · 1.15 KB
/
CmdEdig.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
object EditCmd: TEditCmd
Left = 284
Top = 227
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Edit Command'
ClientHeight = 215
ClientWidth = 401
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 10
Width = 79
Height = 13
Caption = 'Command name:'
end
object CmdEditor: TMemo
Left = 8
Top = 32
Width = 385
Height = 145
TabOrder = 0
WordWrap = False
end
object BitBtn1: TBitBtn
Left = 104
Top = 184
Width = 75
Height = 25
Caption = 'Save'
TabOrder = 1
OnClick = BitBtn1Click
Kind = bkOK
end
object BitBtn2: TBitBtn
Left = 208
Top = 184
Width = 75
Height = 25
TabOrder = 2
Kind = bkCancel
end
object CmdName: TEdit
Left = 104
Top = 8
Width = 137
Height = 21
TabOrder = 3
Text = 'CmdName'
end
end