C++ Builder中获取桌面的大小
时间:2011-03-17 来源:luoshupeng
void __fastcall TForm1::Button1Click(TObject *Sender) { TRect hRect; SystemParametersInfo(SPI_GETWORKAREA , 0, &hRect, 0); ShowMessage(IntToStr(hRect.Top) + " " + IntToStr(hRect.Left) + " " + IntToStr(hRect.Bottom) + " " + IntToStr(hRect.Right)); }
相关阅读 更多 +