Registriert seit: 3. Jul 2011
128 Beiträge
Delphi 10 Seattle Professional
|
AW: Schriftgröße des Hauptmenüs verändert sich
23. Jul 2024, 18:30
Habe mir das eben nochmals angesehen,
Sieht jetzt genauso aus:
begin
screen.MessageFont.Size := 12;
screen.HintFont.Size := 12;
screen.MenuFont.Size := 12;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := '(VVS) Vertrags-Verwaltungs-System';
Application.CreateForm(TDM1, DM1);
Application.CreateForm(TDM2, DM2);
Application.CreateForm(TDM3, DM3);
Application.CreateForm(TFMain, FMain);
Application.CreateForm(TFMenuFenster, FMenuFenster);
Application.Run;
end.
Ist schon lange her, als ich das eingefügt habe. Ich habe aber nichts in Erinnerung, was ich sonst noch gemacht habe. Wenn ich die 3 Zeilen jetzt auskommentiere, habe ich die normale Größe, Klammern weg, ist es wieder 12.
Vielleicht mit der Delphiversion etwas geändert ?
Delphi 6 Prof., Delphi 10 Seattle Prof., IBO 4, IBO 5, Firebird 2.5, Windows 10 Prof., Windows 11 Prof.
Geändert von kdf (23. Jul 2024 um 18:57 Uhr)
|