main
1using ComponentFactory.Krypton.Toolkit;
2using MoMoney.Presentation.Winforms.Helpers;
3
4namespace MoMoney.Presentation.Winforms.Krypton
5{
6 static public class TextBoxExtensions
7 {
8 static public ITextControl<T> text_control<T>(this KryptonTextBox textbox)
9 {
10 return new KryptonTextControl<T>(textbox);
11 }
12 }
13}