-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit3.pas
More file actions
62 lines (50 loc) · 1.22 KB
/
Unit3.pas
File metadata and controls
62 lines (50 loc) · 1.22 KB
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
unit Unit3;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Winapi.WebView2, Winapi.ActiveX,
Vcl.Edge, Vcl.StdCtrls, Vcl.ToolWin, Vcl.ComCtrls;
type
TForm3 = class(TForm)
EdgeBrowser1: TEdgeBrowser;
ToolBar1: TToolBar;
Button1: TButton;
Button2: TButton;
Button3: TButton;
Edit1: TEdit;
Button4: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form3: TForm3;
implementation
{$R *.dfm}
procedure TForm3.Button1Click(Sender: TObject);
begin
EdgeBrowser1.GoBack;
end;
procedure TForm3.Button2Click(Sender: TObject);
begin
EdgeBrowser1.GoForward;
end;
procedure TForm3.Button3Click(Sender: TObject);
begin
EdgeBrowser1.Refresh;
end;
procedure TForm3.Button4Click(Sender: TObject);
begin
EdgeBrowser1.Navigate(Edit1.Text);
end;
procedure TForm3.FormCreate(Sender: TObject);
begin
EdgeBrowser1.Navigate(Edit1.Text);
end;
end.