📄 myfullscreen.cpp
字号:
// MYFullScreen.cpp : implementation file
//
#include "stdafx.h"
#include "MyDataAnalyzer.h"
#include "MYFullScreen.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// MYFullScreen dialog
MYFullScreen::MYFullScreen(CWnd* pParent /*=NULL*/)
: CDialog(MYFullScreen::IDD, pParent)
{
//{{AFX_DATA_INIT(MYFullScreen)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void MYFullScreen::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(MYFullScreen)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(MYFullScreen, CDialog)
//{{AFX_MSG_MAP(MYFullScreen)
ON_BN_CLICKED(IDD_BTN_PREV, OnBtnPrev)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// MYFullScreen message handlers
BOOL MYFullScreen::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
CRect rect;
rect.left=0;
rect.top=0;
rect.right=640;
rect.bottom=480;
m_2DGraph.Create(_T(""),_T(""),WS_VISIBLE,rect,this,0,NULL);
m_pointCount=0;
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void MYFullScreen::OnBtnPrev()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -