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

📄 settingdlg.h

📁 EVC环境下用SDK开发WINCE的应用程序
💻 H
字号:
// SettingDlg.h: interface for the CSettingDlg class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SETTINGDLG_H__E4FE0A6A_E3F3_487F_B92A_70382DBFBD34__INCLUDED_)
#define AFX_SETTINGDLG_H__E4FE0A6A_E3F3_487F_B92A_70382DBFBD34__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "NDialog.h"
#include "NavButton.h"
#include "NStatic.h"

class CSettingDlg : public CNDialog  
{
public:
	// it's a base class, don't instant it.
	CSettingDlg(CNWnd* pParent = NULL, UINT uID = -1);
	virtual ~CSettingDlg();
	// used for caption in setting dialog.
	static HFONT sm_hCaptionFont;

	// Attributes
	void SetCaption(LPCTSTR lpCaption );

protected:
	// Override
	virtual BOOL OnInitDialog();
	virtual BOOL OnEraseBkgnd(HDC hdc);
	virtual void OnPaint(void);
	virtual HBRUSH OnCtlColor(HDC hdc,HWND hwnd, UINT nCtlColor);
//	virtual void OnActivate(UINT nState, HWND hWndOther, BOOL bMinimized );
	
protected:
	CNavButton	m_btnReturn;
	CNStatic	m_stcCaption;

	virtual void OnReturn();

	DECLARE_MESSAGE_MAP()
};

#endif // !defined(AFX_SETTINGDLG_H__E4FE0A6A_E3F3_487F_B92A_70382DBFBD34__INCLUDED_)

⌨️ 快捷键说明

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