상세 컨텐츠

본문 제목

TextBox 스크롤 하단으로 내리기

C#

by 탑~! 2010. 12. 20. 13:13

본문


textBox.SelectionStart = textBox.Text.Length;
textBox.ScrolltoCaret();

or

textBox.AppendText();

using System.Runtime.InteropServices;

private const int WM_VSCROLL = 0x115;
private const int SB_BOTTOM = 7;

[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern int SendMessage(intPtr hWnd, int wMsg, inPtr wParam, inPtr IParam);

SendMessage(textBox.Handle, WM_VSCROLL, (IntPtr)SB_BOTTOM, InPtr.Zero);

관련글 더보기