-
Notifications
You must be signed in to change notification settings - Fork 86
/
uFrmRename.dfm
66 lines (66 loc) · 1.17 KB
/
uFrmRename.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
object frmRename: TfrmRename
Left = 828
Top = 320
BorderIcons = [biSystemMenu]
Caption = 'Rename'
ClientHeight = 166
ClientWidth = 364
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 16
object Label1: TLabel
Left = 16
Top = 13
Width = 82
Height = 16
Caption = 'Current name:'
end
object Label2: TLabel
Left = 16
Top = 69
Width = 67
Height = 16
Caption = 'New name:'
end
object txtCurrentName: TEdit
Left = 16
Top = 32
Width = 329
Height = 24
TabOrder = 0
end
object txtNewName: TEdit
Left = 16
Top = 88
Width = 329
Height = 24
TabOrder = 1
end
object btnCancel: TButton
Left = 175
Top = 133
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object btnRename: TButton
Left = 270
Top = 133
Width = 75
Height = 25
Caption = 'Rename'
Default = True
ModalResult = 1
TabOrder = 3
end
end