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
|
//---------------------------------------------------------------------------
#include <fmx.h>
#include <System.UITypes.hpp>
#pragma hdrstop
#include "TabbedTemplate.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.fmx"
#pragma resource ("*.LgXhdpiPh.fmx", _PLAT_ANDROID)
TTabbedForm *TabbedForm;
//---------------------------------------------------------------------------
__fastcall TTabbedForm::TTabbedForm(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TTabbedForm::FormCreate(TObject *Sender)
{
WebBrowser1->Navigate("https://webteste.000webhostapp.com/");
}
//--------------------------------------------------------------------------- |
Partager