Delphi 取得当前监视器的分辨率


本文整理自网络,侵删。

 var

  MonInfo: TMonitorInfo;

begin

  MonInfo.cbSize := SizeOf(MonInfo);

  GetMonitorInfo(MonitorFromWindow(Handle, MONITOR_DEFAULTTONEAREST), @MonInfo);

  ShowMessage(Format('Current resolution: %dx%d',

              [MonInfo.rcMonitor.Right - MonInfo.rcMonitor.Left,

               MonInfo.rcMonitor.Bottom - MonInfo.rcMonitor.Top]));

end;

 

动态设置屏幕分辨率

Xe10.2测试可用。

 

 

 

function SetScreen(x, y: Word): Boolean;

 

var

 

   DevMode: TDeviceMode;

 

begin

 

   Result := EnumDisplaySettings(nil, 0, DevMode);

 

   if Result then

 

   begin

 

    DevMode.dmFields := DM_PELSWIDTH or DM_PELSHEIGHT;

 

    DevMode.dmPelsWidth := x;

 

    DevMode.dmPelsHeight := y;

 

    Result := ChangeDisplaySettings(DevMode, 0) = DISP_CHANGE_SUCCESSFUL;

 

   end;

 

end;


相关阅读 >>

Delphi access数据库 主键

Delphi 获取本机 hostname ip address

Delphi 全局的鼠标钩子 使用钩子函数数据传递

Delphi unix时间转换成Delphi时间

Delphi unigui unistringgrid1 清空

Delphi api �c multibytetowidechar的用法

Delphi abort 用法

Delphi申请和释放内存

Delphi stringgrid之属性大全

Delphi 用api函数抓取屏幕图像

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...