示例#1
0
 public void Clear(BoldedDateType type)
 {
     for (int i = 0; i < base.List.Count; i++)
     {
         if (((Resco.Controls.OutlookControls.DayCell) base.List[i]).Type == type)
         {
             base.List.RemoveAt(i);
             i--;
         }
     }
 }
示例#2
0
 public void Clear(BoldedDateType type)
 {
     for (int i = 0; i < base.List.Count; i++)
     {
         if (((Resco.Controls.OutlookControls.DayCell)base.List[i]).Type == type)
         {
             base.List.RemoveAt(i);
             i--;
         }
     }
 }
示例#3
0
 public DayCell(DateTime date, BoldedDateType type)
 {
     this.m_foreColor = Color.Transparent;
     this.m_backColor = Color.Transparent;
     this.m_selForeColor = Color.Transparent;
     this.m_selBackColor = Color.Transparent;
     this.m_imageAlignment = Alignment.BottomRight;
     this.m_imageTransparentColor = Color.Empty;
     this.m_tooltipBackColor = Color.Transparent;
     this.m_tooltipForeColor = Color.Transparent;
     this.m_date = date;
     this.m_type = type;
 }
示例#4
0
        internal IList GetBoldedDates(BoldedDateType type)
        {
            ArrayList list = new ArrayList();

            foreach (Resco.Controls.OutlookControls.DayCell cell in base.List)
            {
                if (cell.Type == type)
                {
                    list.Add(cell);
                }
            }
            return(list);
        }
示例#5
0
 public DayCell(DateTime date, BoldedDateType type)
 {
     this.m_foreColor             = Color.Transparent;
     this.m_backColor             = Color.Transparent;
     this.m_selForeColor          = Color.Transparent;
     this.m_selBackColor          = Color.Transparent;
     this.m_imageAlignment        = Alignment.BottomRight;
     this.m_imageTransparentColor = Color.Empty;
     this.m_tooltipBackColor      = Color.Transparent;
     this.m_tooltipForeColor      = Color.Transparent;
     this.m_date = date;
     this.m_type = type;
 }
示例#6
0
 internal IList GetBoldedDates(BoldedDateType type)
 {
     ArrayList list = new ArrayList();
     foreach (Resco.Controls.OutlookControls.DayCell cell in base.List)
     {
         if (cell.Type == type)
         {
             list.Add(cell);
         }
     }
     return list;
 }