Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Folgendes, ich möchte gerne per Programmcode ein Panel anlegen und darauf mehrere Labels plazieren.

pan = new TPanel(this);

pan->Parent = Form1;

pan->Left = 160;

pan->Top = 150;

pan->AutoSize = true;


//pan->Visible = true;

pan->BevelInner = bvNone;

pan->BevelOuter = bvLowered;

pan->UseDockManager = true;



mylabel1 = new TLabel(this);

mylabel1->Parent = pan;

mylabel1->Left = pan->Left;

mylabel1->Top = pan->Top;

mylabel1->AutoSize = true;


mylabel1->Caption = "Stoerung ";

mylabel1->Visible = true;

mylabel1->Color = clGreen;

mylabel1->Font->Color = clYellow;


int Stelle = mylabel1->Height;



mylabel2 = new TLabel(this);

mylabel2->Parent = pan;

mylabel2->Left = mylabel1->Left;

mylabel2->Top =  Stelle;

mylabel2->AutoSize = true;


mylabel2->Caption = "i.O           ";

mylabel2->Visible = true;

mylabel2->Color = clBlack;

mylabel2->Font->Color = clWhite;



mylabel3 = new TLabel(this);

mylabel3->Parent = pan;

mylabel3->Left = mylabel2->Left;

mylabel3->Top =  Stelle * 2;

mylabel3->AutoSize = true;


mylabel3->Caption = "GLT-Auto";

mylabel3->Visible = true;

mylabel3->Color = clBlue;

mylabel3->Font->Color = clWhite;

soweit so gut, wie ihr vielleicht sehr ist bei dem i.O ein großer Abstand zwischen den Hochkommas.

Mein Ziel ist es , dass die Captions alle gleich lang sind, weil sie mit Farbe gefüllt werden,

Nun ist es aber so das ich manchmal genauviel Zeichen habe aber trotzdem ist das eine länger als das andere.

Wie kann ich es also schaffen , alle Captions gleichlang sein zu lassen, dass ein sauberer Farbschnitt entsteht :)

alx

  • Autor

Aber die Caption des Labels könnte sich in der Laufzeit ändern und sie soll deswegen immer optimal sein.

Hab festgestellt das das mit nem Label nicht funktioniert weil man auch nicht die Länge der Caption feststellen kann.

Ist immer irgendwie zu kurz.

Jetzt habe ich das Label auf ein Shape platziert und transparent gemacht.

Nun habe ich wieder das gleiche Problem :upps

Irgendwelche vorschläge?

Danke

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.