main
 1using System.Windows.Forms;
 2using MoMoney.Presentation.Winforms.Helpers;
 3
 4namespace MoMoney.Presentation.Winforms.Databinding
 5{
 6    static public class TextBoxExtensions
 7    {
 8        static public ITextControl<T> text_control<T>(this TextBox textbox)
 9        {
10            return new TextControl<T>(textbox);
11        }
12    }
13}