本文整理自网络,侵删。
procedure TForm1.Button9Click(Sender: TObject);var frameh,captionh,menuh: Integer; str:string;begin//边框高 frameh := GetSystemMetrics(SM_CXFRAME);//标题高 captionh := GetSystemMetrics(SM_CYCAPTION);//菜单高 menuh:=GetSystemMetrics(SM_CYMENU); str:= inttostr( frameh)+' '+inttostr(captionh)+' '+inttostr(menuh) ; memo1.text:=str;end;
本文链接:https://blog.csdn.net/ozhy111/article/details/81452490
相关阅读 >>
Delphi 简化版的inputquery 中文版输入对话框
Delphi 使用google translate实现tts
Delphi winapi: getparent - 获取指定窗口的父窗口句柄
更多相关阅读请进入《Delphi》频道 >>