/// <summary>
		/// Preferred Constructor - Add a reference to the PopupInfo object here
		/// so a reference can be passed to the children.
		/// </summary>
		/// <param name="Parent"></param>
		public PopupInfoItemCollection(PopupInfo Parent)
		{
			this._ParentPopupInfo = Parent;
		}
Beispiel #2
0
 /// <summary>
 /// Overridden constructor to allow PopupInfo to be passed
 /// as a reference. Unfortunately ASP.NET doesn't fire this when
 /// creating the PopupInfoItem child items.
 /// </summary>
 /// <param name="Parent"></param>
 public PopupInfoItem(PopupInfo Parent)
 {
     this._PopupInfoContainer = Parent;
 }
 /// <summary>
 /// Preferred Constructor - Add a reference to the PopupInfo object here
 /// so a reference can be passed to the children.
 /// </summary>
 /// <param name="Parent"></param>
 public PopupInfoItemCollection(PopupInfo Parent)
 {
     this._ParentPopupInfo = Parent;
 }
 /// <summary>
 /// Overridden constructor to allow PopupInfo to be passed
 /// as a reference. Unfortunately ASP.NET doesn't fire this when
 /// creating the PopupInfoItem child items.
 /// </summary>
 /// <param name="Parent"></param>
 public PopupInfoItem(PopupInfo Parent)
 {
     this._PopupInfoContainer = Parent;
 }