首页 > 编程 > C > 正文

MFC 控件随窗体大小而变化

2023-06-09 12:08:09
字体:
来源:转载
供稿:网友

1.添加OnInitialUpdate()

2.添加控件成员变量

  void CFS_DataView::OnInitialUpdate()

  {

  CFormView::OnInitialUpdate();

  // TODO: Add your specialized code here and/or call the base class

  CRect rect;

  GetWindowRect( &rect );

  if (m_wndlist.GetSafeHwnd())

  {

  m_wndlist.MoveWindow(CRect(0,22,rect.Width(),rect.Height()-20),TRUE);

  }

  }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表