How do I set the various parameters to get all the components to scale and be responsive.
I could not upload a video so I have done some screenshots showing the responsivegrid not showing correctly.
I added the anchored panel from the anchor sample and this behaves ok.
Also the responsivegrid & anchored panel do side1.zip (12.3 KB)
not show at first I have to resize the browser window
procedure TForm1.PCSheetCompanyDetailsClick(Sender: TObject);
begin
SetPageControlTransparent;
end;
procedure TForm1.SetPageControlTransparent;
var
i: Integer;
begin
// Set the PageControl background to transparent
PCCompany.ElementHandle.style.setProperty('background', 'transparent', 'important');
PCCompany.ElementHandle.style.setProperty('border', 'none', 'important');
// Loop through each TabSheet and make it transparent
for i := 0 to PCCompany.PageCount - 1 do
begin
PCCompany.Pages[i].ElementHandle.style.setProperty('background', 'transparent', 'important');
PCCompany.Pages[i].ElementHandle.style.setProperty('border', 'none', 'important');
end;
end;