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