Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
TColor FormColor;
void __fastcall TForm1::FormCreate(TObject *Sender)
{
KeyPreview = true;
}
void __fastcall TForm1::FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift)
{
if (Key == Key_F1)
{
FormColor = Form1->Color;
Form1->Color = clAqua;
}
}
void __fastcall TForm1::FormKeyUp(TObject *Sender, WORD &Key, TShiftState Shift)
{
if (Key == Key_F1)
Form1->Color = FormColor;
}
Label1->Left += dx; // dx Pixel nach rechts
Label1->Top -= dy; // dy Pixel nach oben