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

📄 quotationdlg.cpp

📁 一个用来进行仓库货物管理的小系统.可以移植到PDA上的,请指导.
💻 CPP
字号:
// QuotationDlg.cpp : implementation file
//

#include "stdafx.h"
#include "Quotation.h"
#include "QuotationDlg.h"
#include "Fineness.h"
#include "Exchange.h"


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

/////////////////////////////////////////////////////////////////////////////
// CQuotationDlg dialog

CQuotationDlg::CQuotationDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CQuotationDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CQuotationDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CQuotationDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CQuotationDlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CQuotationDlg, CDialog)
	//{{AFX_MSG_MAP(CQuotationDlg)
	ON_COMMAND(IDC_Menu_Fineness, OnMenuFineness)
	ON_COMMAND(IDC_Menu_Exchange, OnMenuExchange)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CQuotationDlg message handlers

BOOL CQuotationDlg::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
	
	CenterWindow(GetDesktopWindow());	// center to the hpc screen

	// TODO: Add extra initialization here
	CCeCommandBar* pCommandBar = (CCeCommandBar*)m_pWndEmptyCB;
    pCommandBar->InsertMenuBar( IDR_MENUBAR1 );
	SHMENUBARINFO info;
    info.cbSize = sizeof(info);
    info.hwndParent = m_hWnd;
    info.dwFlags = 0;
    info.nToolBarId = IDR_MENUBAR1;
    info.hInstRes = ::AfxGetInstanceHandle();
    info.nBmpId = 0;
    info.cBmpImages = 0;
    SHCreateMenuBar(&info);
	return TRUE;  // return TRUE  unless you set the focus to a control
}



void CQuotationDlg::OnMenuFineness() 
{
	// TODO: Add your command handler code here
	CFineness FDlg;
	FDlg.DoModal();
}

void CQuotationDlg::OnMenuExchange() 
{
	// TODO: Add your command handler code here
	CExchange EDlg;
	EDlg.DoModal();
}

⌨️ 快捷键说明

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