using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ScollableToolStripTextBox { public class MyCustomToolStripControlHost : ToolStripControlHost { public MyCustomToolStripControlHost() : base(new Control()) { } public MyCustomToolStripControlHost(Control c) : base(c) { } } }