-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathItemPictureFrame.dfm
127 lines (127 loc) · 2.6 KB
/
ItemPictureFrame.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
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
123
124
125
126
127
object frmItemPictureFrame: TfrmItemPictureFrame
Left = 0
Top = 0
Width = 112
Height = 522
Constraints.MaxWidth = 112
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
object pnlMain: TPanel
Left = 0
Top = 0
Width = 112
Height = 522
Align = alClient
BevelOuter = bvNone
ParentBackground = True
TabOrder = 0
object shbPicsBackground: TShape
Left = 0
Top = 0
Width = 112
Height = 249
Pen.Style = psClear
end
object shpThumbFull: TShape
Left = 16
Top = 24
Width = 80
Height = 80
Brush.Style = bsClear
Pen.Color = clSilver
Pen.Style = psDot
end
object imgThumbFull: TImage
Left = 8
Top = 16
Width = 96
Height = 96
Center = True
OnClick = imgThumbFullClick
end
object shpThumbHalf: TShape
Left = 38
Top = 142
Width = 36
Height = 36
Brush.Style = bsClear
Pen.Color = clSilver
Pen.Style = psDot
end
object shpThumbThirdth: TShape
Left = 44
Top = 212
Width = 24
Height = 24
Brush.Style = bsClear
Pen.Color = clSilver
Pen.Style = psDot
end
object imgThumbHalf: TImage
Left = 32
Top = 136
Width = 48
Height = 48
Center = True
OnClick = imgThumbHalfClick
end
object imgThumbThirdth: TImage
Left = 40
Top = 208
Width = 32
Height = 32
Center = True
OnClick = imgThumbThirdthClick
end
object lblThumbFull: TLabel
Left = 0
Top = 0
Width = 112
Height = 13
Alignment = taCenter
AutoSize = False
Caption = 'Full thumbnail'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = True
end
object lblThumbHalf: TLabel
Left = 0
Top = 120
Width = 112
Height = 13
Alignment = taCenter
AutoSize = False
Caption = '1/2 thumbnail'
Transparent = True
end
object lblThumbThirdth: TLabel
Left = 0
Top = 192
Width = 112
Height = 13
Alignment = taCenter
AutoSize = False
Caption = '1/3 thumbnail'
Transparent = True
end
object btnViewPicture: TButton
Left = 0
Top = 496
Width = 112
Height = 25
Caption = 'View picture'
TabOrder = 0
OnClick = btnViewPictureClick
end
end
end