hspltmsg.h

来自「枚举主机网络设备」· C头文件 代码 · 共 33 行

H
33
字号
//HSpltMsg.h
/////////////////////////////////////////////

#if !defined AFX_HSPLTMSG_H
#define AFX_HSPLTMSG_H


#define		UM_HSPLT_NEW_POS		WM_USER+898
class CHySplitter;
class AFX_EXT_CLASS CHSplitMsg{
public:
	CHSplitMsg(CWnd *pSplt,CRect rc){
		m_pSplt=pSplt;
		m_rcNewPos=rc;
	}
	~CHSplitMsg(){
	}

	CHSplitMsg& operator =(CHSplitMsg& other){
		m_pSplt=other.m_pSplt;
		m_rcNewPos=other.m_rcNewPos;
		return *this;
	}

public:
	CWnd *m_pSplt;
	CRect m_rcNewPos;

};


#endif // !defined AFX_HSPLTMSG_H

⌨️ 快捷键说明

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