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

📄 dialogdlg.h

📁 VC++界面库!!! 界面设计!!!! 详细的例子
💻 H
字号:
// DialogDlg.h : 头文件
//

#pragma once
#include "afxcmn.h"

#include "Page1.h"
#include "MyTabCtrl.h"
#include "afxwin.h"
// CDialogDlg 对话框
class CDialogDlg : public CDialog
{
// 构造
public:
	CDialogDlg(CWnd* pParent = NULL);	// 标准构造函数

// 对话框数据
	enum { IDD = IDD_DIALOG_DIALOG };

	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV 支持


// 实现
protected:
	HICON m_hIcon;

	// 生成的消息映射函数
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
public:
	CPage1	m_page1;
	afx_msg void OnBnClickedButton1();
	afx_msg void OnBnClickedButton4();
	afx_msg void OnBnClickedButton3();
	afx_msg void OnBnClickedButton5();
	CListCtrl m_lstView;
	CTabCtrl m_tabCtrl;
	afx_msg void OnBnClickedButton6();
	afx_msg void OnNcDestroy();
	CButton m_btn;
	afx_msg void OnFileOpen();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnColortheme();
	afx_msg void OnAboutskinfile();
};

⌨️ 快捷键说明

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