📄 fineness.cpp
字号:
// Fineness.cpp : implementation file
//
#include "stdafx.h"
#include "Quotation.h"
#include "Fineness.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFineness dialog
CFineness::CFineness(CWnd* pParent /*=NULL*/)
: CDialog(CFineness::IDD, pParent)
{
//{{AFX_DATA_INIT(CFineness)
m_18KBASE = _T("");
m_Fineness = _T("");
//}}AFX_DATA_INIT
}
void CFineness::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFineness)
DDX_Control(pDX, IDC_LIST_18kbase, m_List_18KBASE);
DDX_Text(pDX, IDC_EDIT_18KBASE, m_18KBASE);
DDX_Text(pDX, IDC_EDIT_Fineness, m_Fineness);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFineness, CDialog)
//{{AFX_MSG_MAP(CFineness)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFineness message handlers
BOOL CFineness::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
m_List_18KBASE.InsertColumn(0,_T("Fineness"),LVCFMT_LEFT,60,-1);
m_List_18KBASE.InsertColumn(1,_T("Percent"),LVCFMT_LEFT,70,-1);
m_List_18KBASE.InsertColumn(2,_T("Exchange"),LVCFMT_LEFT,70,-1);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -