📄 dlgsegment.cpp
字号:
// DlgSegment.cpp : implementation file
//
#include "stdafx.h"
#include "Lottery.h"
#include "DlgSegment.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgSegment dialog
CDlgSegment::CDlgSegment(CWnd* pParent /*=NULL*/)
: CDialog(CDlgSegment::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgSegment)
//}}AFX_DATA_INIT
m_isFilled=FALSE;
}
void CDlgSegment::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgSegment)
DDX_Control(pDX, IDC_LIST1, m_list);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgSegment, CDialog)
//{{AFX_MSG_MAP(CDlgSegment)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgSegment message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -