-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathumain.lfm
95 lines (95 loc) · 2.09 KB
/
umain.lfm
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
object Form1: TForm1
Left = 333
Height = 600
Top = 121
Width = 800
BorderStyle = bsNone
Caption = 'Fluent Design'
ClientHeight = 600
ClientWidth = 800
Color = clWhite
OnCreate = FormCreate
OnDestroy = FormDestroy
OnMouseDown = FormMouseDown
LCLVersion = '1.8.4.0'
object BGRAVirtualScreen2: TBGRAVirtualScreen
Left = 0
Height = 600
Top = 0
Width = 800
OnRedraw = BGRAVirtualScreen2Redraw
Align = alClient
Alignment = taLeftJustify
Caption = 'BGRAVirtualScreen2'
ClientHeight = 600
ClientWidth = 800
Color = clWhite
ParentColor = False
TabOrder = 0
OnMouseDown = FormMouseDown
object BGRAVirtualScreen1: TBGRAVirtualScreen
Left = 0
Height = 600
Top = 0
Width = 320
OnRedraw = BGRAVirtualScreen1Redraw
Align = alLeft
Alignment = taLeftJustify
ClientHeight = 600
ClientWidth = 320
Color = clWhite
ParentColor = False
TabOrder = 0
OnMouseDown = FormMouseDown
object Label1: TLabel
Left = 16
Height = 20
Top = 8
Width = 90
Caption = 'Fluent Design'
Font.Height = 20
ParentColor = False
ParentFont = False
end
end
object Label2: TLabel
Left = 344
Height = 40
Top = 32
Width = 260
Caption = 'About Fluent Design'
Font.Height = 40
ParentColor = False
ParentFont = False
end
object Label3: TLabel
Left = 344
Height = 30
Top = 88
Width = 243
Caption = 'Made for Lazarus by Lainz'
Font.Height = 30
ParentColor = False
ParentFont = False
end
object Label4: TLabel
Left = 344
Height = 40
Top = 136
Width = 283
Caption = 'Move the window around to see the effect.'#13#10'Thanks for watching!'
Font.Height = 20
ParentColor = False
ParentFont = False
end
object Button1: TButton
Left = 344
Height = 25
Top = 192
Width = 75
Caption = 'Close'
OnClick = Button1Click
TabOrder = 1
end
end
end