forked from fakedobro/thtkgui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuentry.dfm
More file actions
54 lines (54 loc) · 1.03 KB
/
uentry.dfm
File metadata and controls
54 lines (54 loc) · 1.03 KB
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
object Entry: TEntry
Left = 0
Top = 0
BorderIcons = []
Caption = 'Choose a file to replace'
ClientHeight = 409
ClientWidth = 242
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
DesignSize = (
242
409)
PixelsPerInch = 96
TextHeight = 13
object ListBox1: TListBox
Left = 0
Top = 0
Width = 242
Height = 372
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
ItemHeight = 13
TabOrder = 0
OnDblClick = ListBox1DblClick
end
object bOK: TButton
Left = 78
Top = 378
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
TabOrder = 1
OnClick = bOKClick
end
object bCancel: TButton
Left = 159
Top = 378
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
TabOrder = 2
OnClick = bCancelClick
end
end