任务栏位置(上下左右)获取

为了避免有些特殊需要的客户把任务栏拉到不同位置,
所以有了任务栏位置,就能像QQ一样显示消息提示框,

RECT rtClient;
::SystemParametersInfo(SPI_GETWORKAREA,0,(PVOID)&rtClient,0);//获取屏幕工作区大小
RECT rcDeskTop;
::GetWindowRect(GetDesktopWindow(),&rcDeskTop);//获取屏幕大小

int ptx = 0, pty = 0;

if (rtClient.bottom != rcDeskTop.bottom) //任务栏在下
{

}
else if (rtClient.left != rcDeskTop.left) //任务栏在左
{

}
else if (rtClient.top != rcDeskTop.top) //任务栏在上
{

}
else if (rtClient.right != rcDeskTop.right) //任务栏在右
{

}

你可能感兴趣的:(C++客户端)