www.pudn.com > fanccMSNr.src.rar > NotConnectedView.cpp
// NotConnectedView.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù.
//
#include "stdafx.h"
#include "DumbMessenger.h"
#include "NotConnectedView.h"
// CNotConnectedView
IMPLEMENT_DYNCREATE(CNotConnectedView, CFormView)
CNotConnectedView::CNotConnectedView()
: CFormView(CNotConnectedView::IDD)
{
}
CNotConnectedView::~CNotConnectedView()
{
}
void CNotConnectedView::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CNotConnectedView, CFormView)
ON_BN_CLICKED(IDC_LOGIN, OnBnClickedLogin)
END_MESSAGE_MAP()
// CNotConnectedView Áø´ÜÀÔ´Ï´Ù.
#ifdef _DEBUG
void CNotConnectedView::AssertValid() const
{
CFormView::AssertValid();
}
void CNotConnectedView::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
// CNotConnectedView ¸Þ½ÃÁö 󸮱âÀÔ´Ï´Ù.
void CNotConnectedView::OnBnClickedLogin()
{
// ¸ÞÀÎÇÁ·¹ÀÓ À©µµ¿ì¿¡ ·Î±×ÀÎ ¸Þ´º ¸í·ÉÀ» ºÎÄ£´Ù.
theApp.m_pMainWnd->PostMessage(WM_COMMAND, ID_FILE_LOGIN);
}