delphi fmx中获取窗口比例  
官方Delphi 学习QQ群: 682628230(三千人)
频道

delphi fmx中获取窗口比例



从柏林Delphi 10.1起,不推荐使用IFMXWindowService.GetWindowScale。

以前,按如下方式获得窗口比例:

procedure TForm1.FormCreate(Sender: TObject);
var
ws: IFMXWindowService;
begin
if TPlatformServices.Current.SupportsPlatformService(IFMXWindowService, ws) then
    Memo1.Lines.Add('缩放:' + FloatToStr(ws.GetWindowScale(Self)));  
    //[DCC 警告] Unit1.pas(34): W1000 符号,符号 'GetWindowScale'不建议使用
end;
现在,此方法显示警告。

在Delphi 10.1 Berlin中,使用窗体的句柄的Scale属性。

procedure TForm1.FormCreate(Sender: TObject);
begin
  Memo1.Lines.Add('缩放:' + FloatToStr(Self.Handle.Scale));
end;

推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号

执行时间: 0.032793045043945 seconds