pstartdlg.h

来自「一个对系统执行文件提供方便管理的软件,里面用到的技术值得参考.」· C头文件 代码 · 共 69 行

H
69
字号
// PStartDlg.h : header file
//

#if !defined(AFX_PSTARTDLG_H__1526D2C4_1101_443B_95BC_BCDB22F63DED__INCLUDED_)
#define AFX_PSTARTDLG_H__1526D2C4_1101_443B_95BC_BCDB22F63DED__INCLUDED_

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

#include "Page1.h"
#include "page2.h"
#include "page3.h"
/////////////////////////////////////////////////////////////////////////////
// CPStartDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CPStartDlg)
	enum { IDD = IDD_PSTART_DIALOG };
	CTabCtrl	m_tab;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPStartDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
    virtual HRESULT WindowProc(UINT message, WPARAM wparam, LPARAM lparam);
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

    CPage1 m_page1;
    CPage2 m_page2;
    CPage3 m_page3;

    CMenu m_page1menu;
	CMenu m_page2menu;
	CMenu m_page3menu;

	BOOL m_moveleft;
	BOOL m_moveright;
	BOOL m_movebottom;
	// Generated message map functions
	//{{AFX_MSG(CPStartDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnSelchangeTab(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_PSTARTDLG_H__1526D2C4_1101_443B_95BC_BCDB22F63DED__INCLUDED_)

⌨️ 快捷键说明

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