- 中查找“获取桌面的尺寸”更多相关内容
- 中查找“获取桌面的尺寸”更多相关内容
- ·上一篇文章:从.exe或.dll中提取icon
- ·下一篇文章:捕捉最小化按钮并运行一部分代码
获取桌面的尺寸
例子:
procedure TForm1.Button1Click(Sender: TObject);
var
hRect : TRect;
begin
SystemParametersInfo(SPI_GETWORKAREA,0,@hRect, 0);
ShowMessage(IntToStr(hRect.Top)
+ '' '' + IntToStr(hRect.Left)
+ '' '' + IntToStr(hRect.Bottom)
+ '' '' + IntToStr(hRect.Right));
end;
Tags:
作者:佚名评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论