Einen Fehler gefunden...
Es war noch eine "Project1.res" im Verzeichnis und es stand da noch "programm Project1".
Das geändert, nun siehts mit nachgeladenen Styles schon mal gut aus. Why ever...
Ein voreingestelltes Style wird aber immer noch nicht gefunde.
Delphi-Quellcode:
program CheckConnections;
uses
VCL.Forms,
Unit1
in '
Unit1.pas'
{Form1},
Vcl.Themes,
Vcl.Styles;
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
TStyleManager.TrySetStyle('
Carbon');
Application.Title := '
Test';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.