private void chinaDateControl1_PaintDate(CDate.myArgs e1) { //用农历指定八月初一是个有额外信息的日子 if (e1.ChinaMonth.Equals("八月") && e1.ChinaDay.EndsWith("初一")) { e1.IsSpecial = true; } }
private void chinaDateControl1_GetDateInfomation(CDate.myArgs e1) { //用公历确定12月24日鼠标移过时显示的提示信息 if (e1.Date.Month == 12 && e1.Date.Day == 24) { e1.Infomation = "祝大家圣诞节快乐"; } else if (e1.ChinaMonth.Equals("八月") && e1.ChinaDay.EndsWith("初一")) //用农历指定8月初一的提示信息 { e1.Infomation = "今天是戴公老爷生日!"; } }