首页 > 其他 > 详细

可伸缩的窗口

时间:2017-08-22 22:44:51      阅读:258      评论:0      收藏:0      [点我收藏+]

##

伸缩窗口的代码:

void CVbvbDlg::OnButton1() //伸缩窗口
{
    
    CString str;
    if(GetDlgItemText(IDC_BUTTON1,str),str=="收缩<<")
    {

        SetDlgItemText(IDC_BUTTON1,"扩展>>");
        SetWindowPos(NULL,0,0,rectSmall.Width(),rectSmall.Height(),SWP_NOMOVE | SWP_NOZORDER);
        //SetWindowPos()函数用于改变窗口的配置;
    }
    else
    {
        SetDlgItemText(IDC_BUTTON1,"收缩<<");
        SetWindowPos(NULL,0,0,rectLarge.Width(),rectLarge.Height(),SWP_NOMOVE | SWP_NOZORDER);
    }
}

初始化时获取伸缩窗口的尺寸:

    CRect rectSeparator;
    GetWindowRect((&rectLarge));

    GetDlgItem(IDC_RIGHT)->GetWindowRect((&rectSeparator));
    
    rectSmall.left=rectLarge.left;
    rectSmall.top=rectLarge.top;
    rectSmall.bottom=rectLarge.bottom;
    rectSmall.right=rectSeparator.left;

    SetWindowPos(NULL,0,0,rectSmall.Width(),rectSmall.Height(),SWP_NOMOVE | SWP_NOZORDER);

 

可伸缩的窗口

原文:http://www.cnblogs.com/tinaluo/p/7413825.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!