forked from synopse/mORMot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrm_Main.dfm
130 lines (130 loc) · 2.49 KB
/
frm_Main.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
128
129
130
object frmMain: TfrmMain
Left = 0
Top = 0
ActiveControl = btnNewImage
Caption = 'Main'
ClientHeight = 361
ClientWidth = 534
Color = clBtnFace
Constraints.MinHeight = 400
Constraints.MinWidth = 550
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
DesignSize = (
534
361)
TextHeight = 15
object lblUserName: TLabel
Left = 8
Top = 48
Width = 59
Height = 15
Caption = 'User name:'
FocusControl = edtUserName
end
object lblPassword: TLabel
Left = 8
Top = 98
Width = 53
Height = 15
Caption = 'Password:'
FocusControl = edtPassword
end
object lblImageName: TLabel
Left = 8
Top = 159
Width = 69
Height = 15
Caption = 'Image name:'
end
object ScrollBox: TScrollBox
Left = 161
Top = 8
Width = 365
Height = 345
Anchors = [akLeft, akTop, akRight, akBottom]
BorderStyle = bsNone
TabOrder = 6
object Image: TImage
Left = 0
Top = 0
Width = 100
Height = 100
AutoSize = True
end
end
object btnNewImage: TButton
Left = 8
Top = 8
Width = 147
Height = 25
Caption = 'New Image'
TabOrder = 0
OnClick = btnNewImageClick
end
object edtUserName: TEdit
Left = 8
Top = 69
Width = 147
Height = 23
TabOrder = 1
Text = 'test'
end
object edtPassword: TEdit
Left = 8
Top = 119
Width = 147
Height = 23
TabOrder = 2
Text = 'test'
end
object edtImageName: TEdit
Left = 8
Top = 180
Width = 147
Height = 23
TabOrder = 3
end
object btnSaveImage: TButton
Left = 8
Top = 209
Width = 147
Height = 25
Caption = 'Save image'
TabOrder = 4
OnClick = btnSaveImageClick
end
object btnLoadImage: TButton
Left = 8
Top = 278
Width = 147
Height = 25
Caption = 'Load image'
TabOrder = 5
OnClick = btnLoadImageClick
end
object cbbAllImages: TComboBox
Left = 8
Top = 249
Width = 147
Height = 23
TabOrder = 7
OnDropDown = cbbAllImagesDropDown
end
object ProgressBar: TProgressBar
Left = 8
Top = 336
Width = 147
Height = 17
Anchors = [akLeft, akBottom]
ParentShowHint = False
ShowHint = False
TabOrder = 8
end
end