📄 coloredit.h
字号:
#ifndef _CCOLOR_EDIT_H_
#define _CCOLOR_EDIT_H_
#include "ColorControl.h"
class CColorEdit : public CEdit, public CColorControl
{
public:
CColorEdit();
virtual ~CColorEdit();
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
//{{AFX_VIRTUAL(CColorEdit)
public:
virtual BOOL OnChildNotify(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pLResult);
//}}AFX_VIRTUAL
protected:
//{{AFX_MSG(CColorEdit)
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnPaint();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
bool m_bReadOnly;
public:
virtual BOOL PreTranslateMessage(MSG* pMsg);
void SetReadOnly(const bool bFlag);
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
};
//{{AFX_INSERT_LOCATION}}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -