calendarday.h

来自「女性安全期计算(VC版) 里面利用了来自cODEpROJECT的关于ppToo」· C头文件 代码 · 共 20 行

H
20
字号
#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 + =
减小字号Ctrl + -
显示快捷键?