Einzelnen Beitrag anzeigen

Crocotronic

Registriert seit: 9. Mai 2013
258 Beiträge
 
#3

AW: DPFActivityIndicator zur Laufzeit erzeugen

  Alt 4. Sep 2013, 12:00
Bringt leider nichts
Delphi-Quellcode:
 ActivityIndicator1:= TDPFActivityIndicatorView.Create(Form1);
 ActivityIndicator1.Parent:= Form1;
 ActivityIndicator1.Align:= TAlignLayout.alCenter;
 ActivityIndicator1.Width:= 110;
 ActivityIndicator1.Height:= 110;
 ActivityIndicator1.BackgroundColor:= TAlphaColors.Black;
 ActivityIndicator1.Color:= TAlphaColors.blue;
 ActivityIndicator1.Alpha:= 0.800000011920929000;

 DPFLabel1:= TDPFLabel.Create(ActivityIndicator1);
 DPFLabel1.Parent:= ActivityIndicator1;
 DPFLabel1.Align:= TAlignLayout.alMostBottom;
 DPFLabel1.Position.Y:= 66;
 DPFLabel1.Width:= 110;
 DPFLabel1.Height:= 34;
 DPFLabel1.Text:= 'Laden...';
 DPFLabel1.TextColor:= TAlphaColors.White;
 DPFLabel1.TextAlignment:= TDPFTextAlignment.taCenter;

 ActivityIndicator1.BringToFront;
 ActivityIndicator1.StartAnimating;
  Mit Zitat antworten Zitat