Ejemplo n.º 1
0
 public HolidayCollection(Calendar owner)
 {
     _Calendar = owner;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of a CalendarItemCollection. 
 /// </summary>
 /// <param name="owner">The parent Calendar control.</param>
 public CalendarItemCollection2(Calendar owner)
     : base(owner)
 {
 }
Ejemplo n.º 3
0
 public DateCollection(Calendar calendar)
 {
     _Calendar = calendar;
 }
Ejemplo n.º 4
0
 public OwnerCollection(Calendar cal)
 {
     _Calendar = cal;
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of a CalendarItemCollection.
 /// </summary>
 /// <param name="parent">The parent Calendar of this collection.</param>
 public CalendarItemCollection(Calendar parent)
     : base()
 {
     _Parent = parent;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of a CalendarItemCollection.
 /// </summary>
 public CalendarItemCollection()
     : base()
 {
     _Parent = null;
 }