using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Text; using System.Windows.Forms; namespace Mesnac.Controls.Default { public partial class ToolStripPanel : ToolStripDropDown { public ToolStripPanel() { InitializeComponent(); //Items.Add(mcsButton); mcsButton.Click += new EventHandler(mcsButton_Click); } void mcsButton_Click(object sender, EventArgs e) { throw new NotImplementedException(); } private MCToolStripButton mcsButton = new MCToolStripButton(); } }