-
[C#] - WinForm 컨트롤 사용하기.NET/CSharp 2018. 8. 26. 09:00
TabControl
- 탭 컨트롤 탭 버튼에 이미지 추가하기
ImageList imgList = new ImageList(); imgList.Images.Add("1", Resources.Image1); imgList.Images.Add("2", Resources.Image2); int tabCount = _tabControl.TabCount; for (int index = 0; index < tabCount; index++) { _tabControl.TabPages[index].ImageKey = (index + 1).ToString(); } _tabControl.ImageList = imgList;
- Tabless TabControl
public class TablessControl : TabControl { protected override void WndProc(ref Message m) { // Hide tabs by trapping the TCM_ADJUSTRECT message if ((m.Msg == 0x1328) && !DesignMode) m.Result = (IntPtr)1; else base.WndProc(ref m); } }
ListView
- ListViewItem 높이 설정
ImageList imageList = new ImageList(); imageList.ImageSize = new Size(1, 20); ListView.SmallImageList = imageList;
'.NET > CSharp' 카테고리의 다른 글
[C#] - Debug 모드 일때 실행과 디버그 구분하기 (0) 2018.09.13 [C#] - WinForm 사용자 정의 컨트롤 사용하기 (0) 2018.08.26 [C#] - 실행중인 파일 디렉토리 얻기 (0) 2018.07.18 [C#] - WinForm ActiveX 컨트롤 만들기 (1) 2018.06.09 [C#] - WinForm 특정 사이즈 컨트롤 만들기 (0) 2017.10.21