CButton::GetIcon
呼叫此成員函式以取得圖示的控制代碼,先前設定的 SetIcon,與按鈕。
HICON GetIcon( ) const;
傳回值
圖示的控制代碼。 NULL ,如果圖示先前未指定。
範例
CButton myIconButton2;
// Create an icon button.
myIconButton2.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_ICON,
CRect(10,10,60,50), pParentWnd, 1);
// If no icon is defined for the button, define the icon to the
// system error icon.
if (myIconButton2.GetIcon() == NULL)
myIconButton2.SetIcon(::LoadIcon(NULL, IDI_ERROR));
需求
Header: afxwin.h