HamBook – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Windows.Forms;
7  
8 namespace ScollableToolStripTextBox
9 {
10 public class MyCustomToolStripControlHost : ToolStripControlHost
11 {
12 public MyCustomToolStripControlHost()
13 : base(new Control())
14 {
15 }
16 public MyCustomToolStripControlHost(Control c)
17 : base(c)
18 {
19 }
20 }
21 }