在FMX中,我可以简单地使用FMX.Forms
单元中的TScreen
类,并具有如下函数:
function GetScreenResolution: String;
begin
Result := Screen.Width.ToString + 'x' + Screen.Height.ToString;
end;
但这在TMS Web Core中不起作用。但是我可以做以下代码,它是 Delphi 和JavaScript的混合:
function GetScreenResolution: String;
begin
asm
Result = screen.width + "x" + screen.height;
end;
end;
上面的方法确实有效,但是有没有一种更好的方法,而不是混合使用两种语言?
1条答案
按热度按时间8hhllhi21#
您可以从
WEB
单元使用window.screen
: