-
Notifications
You must be signed in to change notification settings - Fork 2
/
RenameFrm.dfm
82 lines (82 loc) · 1.66 KB
/
RenameFrm.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
object RenameForm: TRenameForm
Left = 0
Top = 0
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Rename Selected File'
ClientHeight = 215
ClientWidth = 488
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object LblStatus: TLabel
Left = 22
Top = 20
Width = 210
Height = 19
AutoSize = False
Caption = 'Rename Selected File:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object EdtRename: TEdit
Left = 22
Top = 52
Width = 433
Height = 31
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -19
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
OnKeyDown = EdtRenameKeyDown
end
object BtnRename: TButton
Left = 88
Top = 120
Width = 121
Height = 49
Caption = 'Rename File'
TabOrder = 1
OnClick = BtnRenameClick
end
object BtnCancel: TButton
Left = 264
Top = 120
Width = 121
Height = 49
Caption = 'Cancel'
TabOrder = 2
OnClick = BtnCancelClick
end
object EdtExt: TEdit
Left = 22
Top = 126
Width = 27
Height = 31
TabStop = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -19
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 3
Visible = False
OnKeyDown = EdtRenameKeyDown
end
end