-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWP.Favorite.New.dfm
More file actions
122 lines (122 loc) · 2.25 KB
/
WP.Favorite.New.dfm
File metadata and controls
122 lines (122 loc) · 2.25 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
object frmNewFavorite: TfrmNewFavorite
Left = 0
Top = 0
BorderStyle = bsDialog
Caption = 'New Favorite'
ClientHeight = 415
ClientWidth = 768
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
TextHeight = 15
object lblFavoriteName: TLabel
Left = 9
Top = 11
Width = 75
Height = 15
Caption = 'Favorite name'
end
object Label1: TLabel
Left = 9
Top = 43
Width = 89
Height = 15
Caption = 'Selected Projects'
end
object Label2: TLabel
Left = 414
Top = 43
Width = 93
Height = 15
Caption = 'Available Projects'
end
object edtFavoriteName: TEdit
Left = 90
Top = 8
Width = 251
Height = 23
TabOrder = 0
end
object btnSave: TButton
Left = 6
Top = 366
Width = 92
Height = 41
Caption = 'Save'
TabOrder = 1
OnClick = btnSaveClick
end
object btnCancel: TButton
Left = 118
Top = 366
Width = 92
Height = 41
Caption = 'Cancel'
TabOrder = 2
OnClick = btnCancelClick
end
object btnAdd: TButton
Left = 366
Top = 170
Width = 33
Height = 33
Caption = '<'
TabOrder = 3
OnClick = btnAddClick
end
object btnDel: TButton
Left = 366
Top = 209
Width = 33
Height = 33
Caption = '>'
TabOrder = 4
OnClick = btnDelClick
end
object pnlAvailable: TPanel
AlignWithMargins = True
Left = 414
Top = 64
Width = 346
Height = 289
BevelInner = bvLowered
Caption = 'Panel1'
ShowCaption = False
TabOrder = 5
object sbAvailable: TScrollBox
Left = 2
Top = 2
Width = 342
Height = 285
VertScrollBar.Tracking = True
Align = alClient
TabOrder = 0
end
end
object pnlSelected: TPanel
AlignWithMargins = True
Left = 6
Top = 64
Width = 346
Height = 287
BevelInner = bvLowered
Caption = 'pnlSelected'
ShowCaption = False
TabOrder = 6
object sbSelected: TScrollBox
Left = 2
Top = 2
Width = 342
Height = 283
VertScrollBar.Tracking = True
Align = alClient
TabOrder = 0
end
end
end