读书人

判断控件是不是已经被创建

发布时间: 2012-12-18 12:43:41 作者: rapoo

判断控件是否已经被创建

// Resize the edit control contained in the view to// fill the entire view when the view's window is// resized. CMdiView is a CView derived class.void CMdiView::OnSize(UINT nType, int cx, int cy) {   CView::OnSize(nType, cx, cy);   // Resize edit to fill the whole view.   // OnSize can be called before OnInitialUpdate   // so make sure the edit control has been created.   if (::IsWindow(m_Edit.GetSafeHwnd()))   {      m_Edit.MoveWindow (0, 0, cx, cy);   }}

读书人网 >编程

热点推荐