子对话框 GetClientRect函数 得到的值为什么不一样
在主对话框初始化函数中加入下面代码:CRectrc;GetClientRect(rc);for(inti=0;i<4;i++){newDlg[i].Create(IDD_...
在主对话框初始化函数中加入下面代码:
CRect rc;
GetClientRect(rc);
for(int i =0;i<4;i++)
{
newDlg[i].Create(IDD_DIALOG1,this);// 在主框中创建四个子对话框 子框和主框是不同类
newDlg[i].ShowWindow(SW_SHOW);
}
newDlg[0].MoveWindow(0,0,rc.Width()/2,rc.Height()/2,TRUE);//子对话框平分主框区域
newDlg[1].MoveWindow(rc.Width()/2,0,rc.Width(),rc.Height()/2,TRUE);
newDlg[2].MoveWindow(0,rc.Height()/2,rc.Width()/2,rc.Height(),TRUE);
newDlg[3].MoveWindow(rc.Width()/2,rc.Height()/2,rc.Width(),rc.Height(),TRUE);
然后四个子对话框中OnPaint函数中GetClientRect 得到的值不一样,怎么回事啊 ,他们的大小应该是一样的才对。 展开
CRect rc;
GetClientRect(rc);
for(int i =0;i<4;i++)
{
newDlg[i].Create(IDD_DIALOG1,this);// 在主框中创建四个子对话框 子框和主框是不同类
newDlg[i].ShowWindow(SW_SHOW);
}
newDlg[0].MoveWindow(0,0,rc.Width()/2,rc.Height()/2,TRUE);//子对话框平分主框区域
newDlg[1].MoveWindow(rc.Width()/2,0,rc.Width(),rc.Height()/2,TRUE);
newDlg[2].MoveWindow(0,rc.Height()/2,rc.Width()/2,rc.Height(),TRUE);
newDlg[3].MoveWindow(rc.Width()/2,rc.Height()/2,rc.Width(),rc.Height(),TRUE);
然后四个子对话框中OnPaint函数中GetClientRect 得到的值不一样,怎么回事啊 ,他们的大小应该是一样的才对。 展开
展开全部
MoveWindow的第3和第4个参数是宽度和高度
newDlg[0].MoveWindow(0, 0, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[1].MoveWindow(rc.Width()/2, 0, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[2].MoveWindow(0, rc.Height()/2, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[3].MoveWindow(rc.Width()/2, rc.Height()/2, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[0].MoveWindow(0, 0, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[1].MoveWindow(rc.Width()/2, 0, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[2].MoveWindow(0, rc.Height()/2, rc.Width()/2, rc.Height()/2, TRUE);
newDlg[3].MoveWindow(rc.Width()/2, rc.Height()/2, rc.Width()/2, rc.Height()/2, TRUE);
追问
你的代码不和我的一样吗 问题还是没解决......
追答
请你仔细看看newDlg[1],newDlg[2]和newDlg[3]的第3和第4个参数
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
显示的时候,这4个对话框的长宽是一样的吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是整除除不尽造成的吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询