deriveddialogtestview.cpp

来自「What I did with this class is to automat」· C++ 代码 · 共 126 行

CPP
126
字号
// DerivedDialogTestView.cpp : implementation of the CDerivedDialogTestView class
//

#include "stdafx.h"
#include "DerivedDialogTest.h"

#include "DerivedDialogTestDoc.h"
#include "DerivedDialogTestView.h"

#include "TstDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDerivedDialogTestView

IMPLEMENT_DYNCREATE(CDerivedDialogTestView, CView)

BEGIN_MESSAGE_MAP(CDerivedDialogTestView, CView)
	//{{AFX_MSG_MAP(CDerivedDialogTestView)
	ON_COMMAND(ID_TESTES_CALLDIALOG, OnTestesCalldialog)
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDerivedDialogTestView construction/destruction

CDerivedDialogTestView::CDerivedDialogTestView()
{
	// TODO: add construction code here

}

CDerivedDialogTestView::~CDerivedDialogTestView()
{
}

BOOL CDerivedDialogTestView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CDerivedDialogTestView drawing

void CDerivedDialogTestView::OnDraw(CDC* pDC)
{
	CDerivedDialogTestDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CDerivedDialogTestView printing

BOOL CDerivedDialogTestView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CDerivedDialogTestView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CDerivedDialogTestView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CDerivedDialogTestView diagnostics

#ifdef _DEBUG
void CDerivedDialogTestView::AssertValid() const
{
	CView::AssertValid();
}

void CDerivedDialogTestView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}

CDerivedDialogTestDoc* CDerivedDialogTestView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CDerivedDialogTestDoc)));
	return (CDerivedDialogTestDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CDerivedDialogTestView message handlers

void CDerivedDialogTestView::OnTestesCalldialog() 
{
	CTstDlg aDlg;
	
	int nResult = aDlg.DoModal();

	if(nResult == IDOK)
	{
		CString strReturnMsg;
		strReturnMsg.Format("Ok! Produto escolhido: %d",aDlg.m_dwProdutoId);
		AfxMessageBox(strReturnMsg);

	}
	else if(nResult == IDCANCEL)
	{
		AfxMessageBox("O usu醨io saiu com Cancel!");
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?