// GuildInfoSheet.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù. // #include "stdafx.h" #include "AdminToolClient.h" #include "GuildInfoSheet.h" #include "WindowMgr.h" // CGuildInfoSheet IMPLEMENT_DYNAMIC(CGuildInfoSheet, CPropertySheet) CGuildInfoSheet::CGuildInfoSheet(unsigned long dwSelServerGroup, unsigned long dwSelGID, UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(nIDCaption, pParentWnd, iSelectPage) , m_dwSelServerGroup(dwSelServerGroup) , m_dwSelGID(dwSelGID) { AddPage(&m_wndMemberPage); //AddPage(&m_wndGoldPage); //AddPage(&m_wndItemPage); //AddPage(&m_wndRelationshipPage); //AddPage(&m_wndCastlePage); } CGuildInfoSheet::CGuildInfoSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(pszCaption, pParentWnd, iSelectPage) { AddPage(&m_wndMemberPage); //AddPage(&m_wndGoldPage); //AddPage(&m_wndItemPage); //AddPage(&m_wndRelationshipPage); //AddPage(&m_wndCastlePage); } CGuildInfoSheet::~CGuildInfoSheet() { } BEGIN_MESSAGE_MAP(CGuildInfoSheet, CPropertySheet) END_MESSAGE_MAP() // CGuildInfoSheet ¸Þ½ÃÁö 󸮱âÀÔ´Ï´Ù. BOOL CGuildInfoSheet::OnInitDialog() { BOOL bResult = CPropertySheet::OnInitDialog(); return bResult; }