다음을 통해 공유


CWnd::IsIconic

지정 여부 CWnd (아이콘) 최소화 됩니다.

BOOL IsIconic( ) const;

반환 값

0이 아닌 경우 CWnd 최소화 됩니다. 그렇지 않으면 0입니다.

예제

void CAboutDlg::OnPaint()
{
   // This code, normally emitted by the Application Wizard for a dialog- 
   // based project for the dialog's WM_PAINT handler, runs only if the  
   // window is iconic. The window erases the icon's area, then 
   // paints the icon referenced by m_hIcon. 
   if (IsIconic())
   {
      CPaintDC dc(this); // device context for painting

      SendMessage(WM_ICONERASEBKGND, (WPARAM)dc.GetSafeHdc(), 0);

      // Center icon in client rectangle 
      int cxIcon = GetSystemMetrics(SM_CXICON);
      int cyIcon = GetSystemMetrics(SM_CYICON);
      CRect rect;
      GetClientRect(&rect);
      int x = (rect.Width() - cxIcon + 1) / 2;
      int y = (rect.Height() - cyIcon + 1) / 2;

      // Draw the icon
      dc.DrawIcon(x, y, m_hIcon);
   }
   else
   {
      CDialog::OnPaint();   
   }
}

요구 사항

헤더: afxwin.h

참고 항목

참조

CWnd 클래스

계층 구조 차트

IsIconic