Example #1
0
		/// <summary>
		/// Sets the parent collection button belongs to.
		/// </summary>
		/// <param name="value">Parent collection of the item.</param>
		internal void SetParentCollection(BubbleButtonCollection value)
		{
			m_ParentCollection=value;
		}
Example #2
0
		/// <summary>
		/// Default constructor.
		/// </summary>
		/// <param name="container">Container object.</param>
		public BubbleBarTab(IContainer container)
		{
			if(container!=null)
				container.Add(this);
			m_Buttons=new BubbleButtonCollection(this);
		}