-
대화창 자동 스크롤Programming/C# 2013. 12. 12. 12:02
textBox
textBox1.SelectionStart = textBox1.Text.Length;
textBox1.ScrollToCaret();
c# 4.0 이상 에선
textbox1.ScrollToEnd();
출처: http://alperguc.blogspot.kr/2008/11/c-textbox-auto-scroll-to-end.html
listBox
listBox1.SelectedIndex = listBox1.Items.Count - 1;
listBox1.SelectedIndex = -1;
listView
listView1.Items[listView1.Items.Count -1].EnsureVisible();
listView1.SelectedItem = listView1.Items.GetItemAt(listViewModel1.Entries.Count - 1);
listView1.ScrollIntoView(listView1.SelectedItem);
'Programming > C#' 카테고리의 다른 글
.NET Form에서 MFC DLL 불러오기 두번째 (0) 2014.03.26 .NET 프로그램에서 확장(Extension) DLL 불러오기 (0) 2014.03.26 String Builder (0) 2013.12.12 명명 규칙 (C#) (0) 2013.11.13 더블 버퍼링 (0) 2013.11.13