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