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

📄 hspltmsg.h

📁 枚举主机网络设备
💻 H
字号:
//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -