-
Notifications
You must be signed in to change notification settings - Fork 9
/
UnitAbout.pas
57 lines (46 loc) · 1.25 KB
/
UnitAbout.pas
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
//
// Copyright Abduraimov Mo'minjon 2017
// Image Effects program for Windows OS
//
// @MrDlephiGuru
// https://delphi.uz
unit UnitAbout;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMX.Ani, FMX.Objects, FMX.Layouts, FMX.Effects, FMX.Controls.Presentation,
{$IFDEF MSWINDOWS}
Winapi.ShellAPI, Winapi.Windows
{$ENDIF MSWINDOWS};
type
TFormAbout = class(TForm)
Panel1: TPanel;
Layout1: TLayout;
Ellipse3: TEllipse;
Ellipse4: TEllipse;
Circle3: TCircle;
Circle4: TCircle;
Pie2: TPie;
FloatAnimation2: TFloatAnimation;
Label7: TLabel;
Label8: TLabel;
Label10: TLabel;
FloatAnimation3: TFloatAnimation;
ShadowEffect1: TShadowEffect;
ShadowEffect2: TShadowEffect;
procedure Panel1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormAbout: TFormAbout;
implementation
{$R *.fmx}
procedure TFormAbout.Panel1Click(Sender: TObject);
begin
ShellExecute(0, 'OPEN', 'https://muminjon.com', Nil, Nil, SW_SHOWMAXIMIZED);
end;
end.