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

📄 setui.cpp

📁 电信机房MDF、电源柜监控源码,主要用在通信机房配线设备监控、电源柜监控
💻 CPP
字号:
// SetUI.cpp : implementation file
//

#include "stdafx.h"
#include "MDF.h"
#include "SetUI.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSetUI

//##ModelId=44B6F883030F
CSetUI::CSetUI()
{
}

//##ModelId=44B6F883031D
CSetUI::~CSetUI()
{
}


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


/////////////////////////////////////////////////////////////////////////////
// CSetUI message handlers

//##ModelId=44B6F8830310
void CSetUI::Create(CWnd* pParentWnd)
{
	CRect rc ;
	rc.top = 100 ;
	rc.left = 100 ;
	rc.bottom = 400 ;
	rc.right = 400 ;

	CBrush MyBrush ;

	MyBrush.CreateSolidBrush(RGB(255,255,255)) ;

	this->CreateEx(NULL,
			::AfxRegisterWndClass(CS_VREDRAW|CS_HREDRAW,
						::LoadCursor(NULL,IDC_ARROW),
						(HBRUSH)MyBrush.GetSafeHandle(),NULL),
			NULL,
			WS_POPUP|WS_CHILD|WS_VISIBLE,
			rc,
			pParentWnd,
			NULL
			) ;

}

⌨️ 快捷键说明

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