Registriert seit: 24. Mai 2017
Ort: Wien, Österreich
1.205 Beiträge
Delphi 11 Alexandria
|
AW: ShortCut für Uses - Unit bewegen
11. Dez 2018, 13:00
Code:
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes,
System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.TabControl,
FMX.StdCtrls, FMX.Controls.Presentation,
FMX.Gestures, System.Actions, FMX.ActnList, FMX.TMSFNCButton, FMX.ScrollBox,
FMX.Memo;
type
TTabbedwithNavigationForm = class(TForm)
TabControl1: TTabControl;
TabItem1: TTabItem;
TabControl2: TTabControl;
TabItem5: TTabItem;
ToolBar1: TToolBar;
lblTitle1: TLabel;
btnNext: TSpeedButton;
TabItem6: TTabItem;
ToolBar2: TToolBar;
lblTitle2: TLabel;
btnBack: TSpeedButton;
TabItem2: TTabItem;
ToolBar3: TToolBar;
lblTitle3: TLabel;
TabItem3: TTabItem;
ToolBar4: TToolBar;
lblTitle4: TLabel;
TabItem4: TTabItem;
ToolBar5: TToolBar;
lblTitle5: TLabel;
GestureManager1: TGestureManager;
ActionList1: TActionList;
NextTabAction1: TNextTabAction;
PreviousTabAction1: TPreviousTabAction;
mmoLog: TMemo;
btnLoad: TTMSFNCButton;
actLoad: TAction;
btnCreate: TTMSFNCButton;
actCreateJSON: TAction;
procedure actCreateJSONExecute(Sender: TObject);
procedure actLoadExecute(Sender: TObject);
procedure GestureDone(Sender: TObject; const EventInfo: TGestureEventInfo;
var Handled: Boolean);
procedure FormCreate(Sender: TObject);
procedure FormKeyUp(Sender: TObject; var Key: Word; var KeyChar: Char;
Shift: TShiftState);
private
{ Private declarations }
public
procedure DataToJSON;
procedure LoadData;
{ Public declarations }
end;
var
TabbedwithNavigationForm: TTabbedwithNavigationForm;
implementation
uses
System.IOUtils, System.StrUtils, JsonDataObjects;
{$R *.fmx}
Genügt das?
|
|
Zitat
|