⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deriveddialogtestview.cpp

📁 What I did with this class is to automatize (not MS s automation) several processes to do a search i
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -