C++ MFC控件随着窗口大小变化而自适应

处理WM_SIZE 消息的 onSize函数。

void CMFCcodeDlg::OnSize(UINT nType, int cx, int cy)
{
	CDialogEx::OnSize(nType, cx, cy);

	CRect rect;
	pWndT->GetWindowRect(&rect);
	ScreenToClient(&rect);//将控件大小转换为在对话框中的区域坐标
	//cx/m_rect.Width()为对话框在横向的变化比例

	rect.left=rect.left*cx/m_rect.Width();//调整控件大小
	rect.right=rect.right*cx/m_rect.Width();
	rect.top=rect.top*cy/m_rect.Height();
	rect.bottom=rect.bottom*cy/m_rect.Height();
	pWndT->MoveWindow(rect);//设置控件大小	

}


你可能感兴趣的:(MFC)