SystemFont.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:0k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #ifndef SYSTEMFONT_H
  2. #define SYSTEMFONT_H
  3. class CSystemFont
  4. {
  5. public:
  6. CSystemFont() {}
  7. ~CSystemFont();
  8. CFont* operator()();
  9. private:
  10. void CreateSystemFont();
  11. CFont m_Font;
  12. };
  13. #endif