Exemplo n.º 1
0
 public WFTextBoxAdapter(System.Windows.Forms.TextBoxBase ttb)
 {
     tb = ttb;
 }
Exemplo n.º 2
0
 public TxtBoxLog(System.Windows.Forms.TextBoxBase textBox) => TextBox = textBox ?? throw new ArgumentNullException(nameof(textBox));
Exemplo n.º 3
0
 public static void ScrollToBottom(this System.Windows.Forms.TextBoxBase tb)
 {
     SendMessage(tb.Handle, WM_VSCROLL, new IntPtr(SB_BOTTOM), new IntPtr(0));
 }
Exemplo n.º 4
0
 public static void ScrollLineUp(this System.Windows.Forms.TextBoxBase tb)
 {
     SendMessage(tb.Handle, WM_VSCROLL, new IntPtr(SB_LINEUP), new IntPtr(0));
 }
Exemplo n.º 5
0
 public WFTextBoxAdapter(System.Windows.Forms.TextBoxBase ttb)
 {
     tb = ttb;
 }