스크롤바 크기를 구하는 법은 다음과 같다.
// 세로 스크롤바의 가로 넓이
int nVerticalWidth = System.Windows.Forms.SystemInformation.VerticalScrollBarWidth;
// 가로 스크롤바의 세로 넓이
int nHorizontalWidth = System.Windows.Forms.SystemInformation.HorizontalScrollBarHeight;
'Study > C#, Winform' 카테고리의 다른 글
[C#] DateTime 시간 자르기, 반올림, 반내림, 가까운 값 (1) | 2022.10.11 |
---|---|
[C#] Enumerable 에서 중복 데이터 삭제 (Distinct) (0) | 2022.10.06 |
[C# Winform] Context Menu를 Button 옆에 띄우기 (0) | 2022.09.28 |
[C#] MemoryStream, StreamWriter, StreamReader, BinaryWriter, BinaryReader (1) | 2022.08.16 |
[C#] 시간 관련 (DateTime, TimeSpan, Stopwatch) (0) | 2022.08.09 |