📄 calendarday.h
字号:
#pragma once
class CCalendarDay
{
public:
CCalendarDay(void);
CCalendarDay(CRect rcRect);
~CCalendarDay(void);
void DrawItem(CDC* pDC);
void DrawItem(CDC* pDC, CRect rcRect, int nDay);
void DrawItem(CDC* pDC, CRect rcRect, int nDay, int nType);
int m_nType;
private:
CRect m_rcRect;
int m_nDay;
BOOL m_bInMonth;
public:
void SetDay(int iDay,int type, bool bInMonth);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -