public CommandBarManager()
		{
			this.SetStyle(ControlStyles.UserPaint, false);
			this.TabStop = false;
			this.Dock = DockStyle.Top;
			this.commandBars = new CommandBarCollection(this);
		}
 public CommandBarManager()
 {
     this.SetStyle(ControlStyles.UserPaint, false);
     this.TabStop     = false;
     this.Dock        = DockStyle.Top;
     this.commandBars = new CommandBarCollection(this);
 }
		protected override void Dispose(bool disposing)
		{
			if (disposing)
			{
				this.commandBars = null;
			}

			base.Dispose(disposing);
		}
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                this.commandBars = null;
            }

            base.Dispose(disposing);
        }