반응형
// BitmapButtonDlg.h
class CBitmapButtonDlg : public CDialog
{
// Construction
public:
//...
CBitmapButton Button[5];
//...
}
// BitmapButtonDlg.cpp
BOOL CBitmapButtonDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
Button[0].AutoLoad(IDOK, this);
Button[1].AutoLoad(IDCANCEL, this);
Button[2].AutoLoad(IDYES, this);
Button[3].AutoLoad(IDNO, this);
Button[4].AutoLoad(ID_HELP, this);
return TRUE; // return TRUE unless you set the focus to a control
}
반응형
'C & C++ > MFC 컨트롤' 카테고리의 다른 글
[List] Bitmap List (0) | 2011.05.21 |
---|---|
[Button] Bitmap Button 02 (0) | 2011.05.21 |
[ToolTip] 정적툴팁 (0) | 2011.05.21 |
[ToolTip] 동적 툴팁 (0) | 2011.05.21 |
[Ctrl] Checkbox 사용법 (0) | 2011.05.20 |
댓글