hxedfrm.cpp

来自「this code is used for cypress uzusb seri」· C++ 代码 · 共 58 行

CPP
58
字号
////////////////////////////////////////////////////////////////////////////////
// HxEdFrm.cpp : implementation file
// $Header: /USB/Util/EzMr/HxEdFrm.cpp 3     8/08/00 2:26p Tpm $
// Copyright (c) 2000 Cypress Semiconductor. May not be reproduced without permission.
// See the EzUsb Developer's Kit license agreement for more details.
////////////////////////////////////////////////////////////////////////////////


#include "stdafx.h"
#include "ezmr.h"
#include "HxEdFrm.h"

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

/////////////////////////////////////////////////////////////////////////////
// CHxEdFrm

IMPLEMENT_DYNCREATE(CHxEdFrm, CMDIChildWnd)

CHxEdFrm::CHxEdFrm()
{
}

CHxEdFrm::~CHxEdFrm()
{
}


BEGIN_MESSAGE_MAP(CHxEdFrm, CMDIChildWnd)
	//{{AFX_MSG_MAP(CHxEdFrm)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHxEdFrm message handlers

BOOL CHxEdFrm::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
	// CG: The following block was added by the Split Bars component.
	{
		if (!m_wndSplitter.Create(this,
		                          1, 2,          // TODO: adjust the number of rows, columns
		                          CSize(10, 10), // TODO: adjust the minimum pane size
		                          pContext))
		{
			TRACE0("Failed to create split bar ");
			return FALSE;    // failed to create
		}

		return TRUE;
	}
}

⌨️ 快捷键说明

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