source: tags/1.4.0/Forms/UFormImage.lfm

Last change on this file was 128, checked in by chronos, 3 years ago
  • Modified: Use Generics.Collection instead of fgl for better Delphi compatibility.
File size: 2.0 KB
Line 
1object FormImage: TFormImage
2 Left = 761
3 Height = 524
4 Top = 539
5 Width = 711
6 Caption = 'Photo'
7 ClientHeight = 524
8 ClientWidth = 711
9 Constraints.MinHeight = 171
10 Constraints.MinWidth = 711
11 DesignTimePPI = 144
12 OnClose = FormClose
13 OnCreate = FormCreate
14 OnDestroy = FormDestroy
15 OnShow = FormShow
16 LCLVersion = '2.2.0.4'
17 object ImagePhoto: TImage
18 Left = 15
19 Height = 396
20 Top = 15
21 Width = 679
22 Anchors = [akTop, akLeft, akRight, akBottom]
23 Center = True
24 Proportional = True
25 Stretch = True
26 end
27 object ButtonLoad: TButton
28 Left = 15
29 Height = 37
30 Top = 473
31 Width = 169
32 Anchors = [akLeft, akBottom]
33 Caption = 'Load from file'
34 OnClick = ButtonLoadClick
35 TabOrder = 0
36 end
37 object ButtonSave: TButton
38 Left = 192
39 Height = 37
40 Top = 472
41 Width = 161
42 Anchors = [akLeft, akBottom]
43 Caption = 'Save to file'
44 OnClick = ButtonSaveClick
45 TabOrder = 1
46 end
47 object ButtonClear: TButton
48 Left = 361
49 Height = 37
50 Top = 473
51 Width = 100
52 Anchors = [akLeft, akBottom]
53 Caption = 'Clear'
54 OnClick = uttonClearClick
55 TabOrder = 2
56 end
57 object EditUrl: TEdit
58 Left = 84
59 Height = 42
60 Top = 417
61 Width = 610
62 Anchors = [akLeft, akRight, akBottom]
63 OnChange = EditUrlChange
64 TabOrder = 3
65 end
66 object ButtonCancel: TButton
67 Left = 483
68 Height = 37
69 Top = 473
70 Width = 100
71 Anchors = [akRight, akBottom]
72 Caption = 'Cancel'
73 ModalResult = 2
74 TabOrder = 4
75 end
76 object ButtonOk: TButton
77 Left = 594
78 Height = 37
79 Top = 473
80 Width = 100
81 Anchors = [akRight, akBottom]
82 Caption = 'OK'
83 ModalResult = 1
84 TabOrder = 5
85 end
86 object Label1: TLabel
87 Left = 15
88 Height = 26
89 Top = 425
90 Width = 38
91 Anchors = [akLeft, akBottom]
92 Caption = 'URL:'
93 end
94 object OpenPictureDialog1: TOpenPictureDialog
95 Left = 127
96 Top = 207
97 end
98 object SavePictureDialog1: TSavePictureDialog
99 Left = 307
100 Top = 207
101 end
102end
Note: See TracBrowser for help on using the repository browser.