-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuLoja.pas
More file actions
34 lines (25 loc) · 799 Bytes
/
uLoja.pas
File metadata and controls
34 lines (25 loc) · 799 Bytes
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
unit uLoja;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
System.Json, System.Messaging,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, System.Net.URLClient, System.Net.HttpClient,
System.Net.HttpClientComponent, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Layouts, uListaProduto;
type
TForm7 = class(TForm)
FrameListaProdutos1: TFrameListaProdutos;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
public
end;
var
Form7: TForm7;
implementation
Uses
uMessaging;
{$R *.fmx}
procedure TForm7.FormClose(Sender: TObject; var Action: TCloseAction);
begin
TMessageManager.DefaultManager.SendMessage(Self, TMessageHideProduto.Create);
end;
end.