HamBook – Rev 3

Subversion Repositories:
Rev:
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)
        {
        }
    }
}