반응형
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);
}
}
'Programing > C# ' 카테고리의 다른 글
C# 키보드 후킹(DataGrid 한글 입력을 위한) (2) | 2014.11.10 |
---|---|
C# Properties.Settings 에서 생성한 값의 저장경로[user.config] (0) | 2014.08.01 |
레지스트리에 파일 아이콘 등록 , 파일 연결 프로그램 등록 (0) | 2014.06.13 |
레지스트리 파일 아이콘 변경후 리부팅 없이 적용 (0) | 2014.06.11 |
showWindow 에서 TopMost로 폼창 띄우기 (0) | 2014.04.21 |