删除CScrollView中滚动条

来源:互联网 发布:数据采集厂家 编辑:程序博客网 时间:2024/05/01 07:32

在OnSize中增加如下:



void CXXXXView::OnSize(UINT nType, int cx, int cy)
{
CScrollView::OnSize(nType, cx, cy);


ShowScrollBar(SB_BOTH,FALSE);
// TODO: Add your message handler code here
}