示例#1
0
 public MonthItem(string title, string detail, DateTime date, CalendarShowType type)
 {
     _Detail = detail;
     _Title  = title;
     _Date   = date;
     _CType  = type;
 }
示例#2
0
 public DayItem(DateTime start, DateTime end, string detail, CalendarShowType type)
 {
     _Start     = start;
     _End       = end;
     _DayDetail = detail;
     _CType     = type;
 }
示例#3
0
 public MonthItem(string title, string detail, DateTime date, CalendarShowType type, string backgroundColor)
     : this(title, detail, date, type)
 {
     _BackgroundColor = backgroundColor;
 }