BetterExplorer.MoreColumns.WndProc C# (CSharp) 메소드

WndProc() 보호된 메소드

protected WndProc ( Message &m ) : void
m System.Windows.Forms.Message
리턴 void
		protected override void WndProc(ref Message m) {
			if (m.Msg == 0x84 /* WM_NCHITTEST */) {
				m.Result = (IntPtr)1;
				return;
			}
			base.WndProc(ref m);
		}
		protected override CreateParams CreateParams {