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

📄 hxedfrm.cpp

📁 EZ _USB Control PANEL 源代码
💻 CPP
字号:
////////////////////////////////////////////////////////////////////////////////
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -