Exemplo n.º 1
0
 public DragHandlerBase()
 {
     m_wndProcCallBack = new WndProcCallBack(this.WndProc);
 }
Exemplo n.º 2
0
 private static extern IntPtr SetWindowLong(IntPtr hWnd, int nIndex, WndProcCallBack wndProcCallBack);
Exemplo n.º 3
0
		private static extern IntPtr SetWindowLong(IntPtr hWnd, int nIndex, WndProcCallBack wndProcCallBack);
Exemplo n.º 4
0
		public DragHandlerBase()
		{
			m_wndProcCallBack = new WndProcCallBack(this.WndProc);
		}
Exemplo n.º 5
0
 private void AssignHandle()
 {
     m_wndProcCallBack = new WndProcCallBack(this._WndProc);
     m_prevWndFunc     = SetWindowLong(WinControl.Handle, -4, m_wndProcCallBack); // GWL_WNDPROC = -4
 }