-
Notifications
You must be signed in to change notification settings - Fork 20
/
InputDlg.dfm
60 lines (60 loc) · 1.31 KB
/
InputDlg.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
object FInputDlg: TFInputDlg
Left = 463
Top = 456
BorderStyle = bsDialog
ClientHeight = 71
ClientWidth = 566
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object OKBtn: TButton
Left = 205
Top = 40
Width = 75
Height = 25
Cursor = crHandPoint
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelBtn: TButton
Left = 285
Top = 40
Width = 75
Height = 25
Cursor = crHandPoint
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object edtName: TLabeledEdit
Left = 104
Top = 8
Width = 409
Height = 24
EditLabel.Width = 40
EditLabel.Height = 16
EditLabel.Caption = 'Name:'
EditLabel.Font.Charset = RUSSIAN_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = -12
EditLabel.Font.Name = 'Fixedsys'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
LabelPosition = lpLeft
ParentFont = False
TabOrder = 2
OnEnter = edtNameEnter
end
end