분류 전체보기 411

[윈도우] Win 7 Ultimate 32Bit Super Lite Ghost V2 2017 By Armaan Ali 한글화

20170318_Win 7 Ultimate 32Bit Super Lite V2 2017_KO_KY.wim - 3.00GB (3,222,382,441 바이트) Folders: 3688Files: 21328Totalsize: 5672.88MByteName: ADmin_Win 7 Ultimate 32Bit Super Lite V2 2017_KO_KYDescription: Windows 7 Ultimate K_Admin계정Flags: Ultimate Folders: 3688Files: 21328Totalsize: 5665.94MByteName: User_Win 7 Ultimate 32Bit Super Lite V2 2017_KO_KYDescription: Windows 7 Ultimate K_사용자계정Flags..

컨테이너/유틸 2018.02.03

[팁] 폼 상단바 클릭 이벤트

폼 상단바.. 그러니까 X있고 최소화 최대화 있는 그곳을 누르면 이벤트를 받고 싶을때 win32 api의 winproc를 쓰면된다. const int WM_NCLBUTTONDOWN = 0x00A1; protected override void WndProc(ref Message m) { base.WndProc(ref m); // no client area if (m.Msg == WM_NCLBUTTONDOWN) { //select tittle area only If (){ this.Cursor = new Cursor(Cursor.Current.Handle); MessageBox.Show("Click"); //} } } 소스코드의 적당한 곳에 붙여넣기 하면 된다.

개발/C# 2018.02.02