Initial commit - Delphi MES client project

This commit is contained in:
Developer
2026-05-07 20:25:34 +08:00
commit 819b4824f6
466 changed files with 1176403 additions and 0 deletions
+106
View File
@@ -0,0 +1,106 @@
unit uFrameMain;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.Controls.Presentation, FMX.Edit, FMX.ListBox, FMX.Objects, FMX.ImgList;
type
TFrameMain = class(TFrame)
Rectangle8: TRectangle;
Option1: TRectangle;
Glyph9: TGlyph;
OptionLabel1: TText;
Text19: TText;
OptionValue1: TEdit;
Rectangle102: TRectangle;
Option3: TRectangle;
Glyph2: TGlyph;
OptionLabel3: TText;
Text6: TText;
OptionValue3: TEdit;
Option5: TRectangle;
Glyph3: TGlyph;
OptionLabel5: TText;
Text23: TText;
OptionValue5: TEdit;
Option13: TRectangle;
Glyph10: TGlyph;
OptionLabel13: TText;
Text25: TText;
OptionValue13: TEdit;
Option11: TRectangle;
Glyph11: TGlyph;
OptionLabel11: TText;
Text26: TText;
OptionValue11: TEdit;
Option7: TRectangle;
Glyph12: TGlyph;
OptionLabel7: TText;
Text28: TText;
OptionValue7: TEdit;
Option9: TRectangle;
Glyph13: TGlyph;
OptionLabel9: TText;
Text30: TText;
OptionValue9: TEdit;
Option15: TRectangle;
Glyph14: TGlyph;
OptionLabel15: TText;
Text32: TText;
OptionValue15: TEdit;
Rectangle9: TRectangle;
Option16: TRectangle;
Glyph15: TGlyph;
OptionLabel16: TText;
Text34: TText;
OptionValue16: TEdit;
Option14: TRectangle;
Glyph16: TGlyph;
OptionLabel14: TText;
Text36: TText;
OptionValue14: TEdit;
Option12: TRectangle;
Glyph17: TGlyph;
OptionLabel12: TText;
Text38: TText;
OptionValue12: TEdit;
Option10: TRectangle;
Glyph18: TGlyph;
OptionLabel10: TText;
Text40: TText;
OptionValue10: TEdit;
Option8: TRectangle;
Glyph19: TGlyph;
OptionLabel8: TText;
Text42: TText;
OptionValue8: TEdit;
Option6: TRectangle;
Glyph20: TGlyph;
OptionLabel6: TText;
Text44: TText;
OptionValue6: TEdit;
Option4: TRectangle;
Glyph21: TGlyph;
OptionLabel4: TText;
Text46: TText;
OptionValue4: TEdit;
Option2: TRectangle;
Glyph22: TGlyph;
OptionLabel2: TText;
Text48: TText;
OptionValue2: TEdit;
Rectangle34: TRectangle;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.fmx}
end.