lockform.h

来自「一款防火墙源码」· C头文件 代码 · 共 63 行

H
63
字号
#if !defined(AFX_LOCKFORM_H__3B05F04F_6495_46EB_BA0F_4E2B9530CD33__INCLUDED_)
#define AFX_LOCKFORM_H__3B05F04F_6495_46EB_BA0F_4E2B9530CD33__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// LockForm.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// LockForm dialog

class LockForm : public CDialog
{
// Construction
public:
	LockForm(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(LockForm)
	enum { IDD = IDD_LOCK_FORM };
	CButton	m_cUnlock;
	CStatic	m_cHeadLine;
	CStatic	m_cFrame;
	CEdit	m_cInPw;
	CStatic	m_cStatus;
	CButton	m_b1;
	CString	m_vInPw;
	CString	m_vStatus;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(LockForm)
	public:
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
	//}}AFX_VIRTUAL

// Implementation
protected:

	CBrush m_hDesktopBrush;
	// Generated message map functions
	//{{AFX_MSG(LockForm)
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnPaint();
	afx_msg BOOL OnButtonUnlock();
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
public:
	void MoveControls();
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LOCKFORM_H__3B05F04F_6495_46EB_BA0F_4E2B9530CD33__INCLUDED_)

⌨️ 快捷键说明

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