吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1062|回复: 2
收起左侧

[求助] 下面的代码怎么修改和调用不报错?

[复制链接]
冥界3大法王 发表于 2022-3-21 23:00


[Delphi] 纯文本查看 复制代码
procedure TFrmBase.SetDpiSize;
var
  setProcessDPIAwareness: Pointer;
  setting, WinDPI: Integer;
begin
  // Set DPI Awareness depending on a registry setting
  with TRegIniFile.create('SOFTWARE\' + SRegName) do
  begin
    setting := readInteger('SETTINGS', 'scale', 0);
    Free;
  end;
  handle := LoadLibrary('shcore.dll');
  if handle <> 0 then
  begin
    setProcessDPIAwareness := GetProcAddress(handle, 'SetProcessDpiAwareness');
    if Assigned(setProcessDPIAwareness) then
    begin
      if setting < 2 then
      // setting <2 means no scaling vs Windows
        setProcessDPIAwareness(0)
      else
      // setting 2: 120%, 3: 140% vs. Windows
      // The actual used scaling factor multiplies by windows DPI/96
        setProcessDPIAwareness(1);
    end;
    FreeLibrary(handle);
  // Get windows scaling as Screen.PixelsPerInch was read before swiching DPI awareness
  // Our scaling routines now work with WinDPI instead of Screen.PixelsPerInch
    WinDPI := Screen.MonitorFromWindow(application.handle).PixelsPerInch;
  end;
end;

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
love2334163717 + 1 + 1 热心回复!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

李佑辰 发表于 2022-3-22 01:20
如果把代码全部删掉了不就不报错了,我真是太机智了
 楼主| 冥界3大法王 发表于 2022-3-22 08:44
李佑辰 发表于 2022-3-22 01:20
如果把代码全部删掉了不就不报错了,我真是太机智了

我反手举报版主姥爷来抓你,我ttm机智了。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 15:34

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表