📄 windows.h
字号:
#pragma once
// CWindows 对话框
//用于模拟对方桌面的对话框
#include "KZQDlg.h"
class CWindows : public CDialog
{
DECLARE_DYNAMIC(CWindows)
public:
CWindows(CWnd* pParent = NULL); // 标准构造函数
virtual ~CWindows();
int WinX,WinY;
// 对话框数据
enum { IDD = IDD_WINDOWS };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnBnClickedCancel();
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -