コード例 #1
0
ファイル: Adapters.cs プロジェクト: myprohost/pdfchords
 public WFTextBoxAdapter(System.Windows.Forms.TextBoxBase ttb)
 {
     tb = ttb;
 }
コード例 #2
0
ファイル: Log.cs プロジェクト: belomord/GControlSrv
 public TxtBoxLog(System.Windows.Forms.TextBoxBase textBox) => TextBox = textBox ?? throw new ArgumentNullException(nameof(textBox));
コード例 #3
0
 public static void ScrollToBottom(this System.Windows.Forms.TextBoxBase tb)
 {
     SendMessage(tb.Handle, WM_VSCROLL, new IntPtr(SB_BOTTOM), new IntPtr(0));
 }
コード例 #4
0
 public static void ScrollLineUp(this System.Windows.Forms.TextBoxBase tb)
 {
     SendMessage(tb.Handle, WM_VSCROLL, new IntPtr(SB_LINEUP), new IntPtr(0));
 }
コード例 #5
0
ファイル: Adapters.cs プロジェクト: NightmareX1337/lfs
 public WFTextBoxAdapter(System.Windows.Forms.TextBoxBase ttb)
 {
     tb = ttb;
 }