123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef XCOMBO_H
- #define XCOMBO_H
- #include "AdvComboBox.h"
- #include "XComboList.h"
- extern UINT WM_XCOMBOLIST_COMPLETE;
- class CXCombo : public CAdvComboBox
- {
- public:
- CXCombo(CWnd * pParent);
- virtual ~CXCombo();
- public:
- public:
-
-
- protected:
-
- virtual void OnEscapeKey();
- virtual void OnComboComplete();
- protected:
- CWnd * m_pParent;
- void SendRegisteredMessage(UINT nMsg, WPARAM wParam, LPARAM lParam);
-
- protected:
-
- afx_msg void OnKillFocus(CWnd* pNewWnd);
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|