1234567891011121314151617181920212223 |
- #ifndef __UICHECKBOX_H__
- #define __UICHECKBOX_H__
- #pragma once
- namespace DuiLib
- {
-
-
-
- class UILIB_API CCheckBoxUI : public COptionUI
- {
- public:
- LPCTSTR GetClass() const;
- LPVOID GetInterface(LPCTSTR pstrName);
- void SetCheck(bool bCheck, bool bTriggerEvent=true);
- bool GetCheck() const;
- };
- }
- #endif
|