Ejemplo n.º 1
0
 //-------------------------------------------------------------
 // 概要:コンテキストメニュー表示
 //-------------------------------------------------------------
 public static void ShowContextMenu(IntPtr handle, Point mousePositon)
 {
     Logger.Instance.DebugFormat("ShowContextMenu(handle:{0})", handle);
     Win32API.SendMessage(handle, (int)WindowsMessage.WM_CONTEXTMENU, new IntPtr(mousePositon.X), new IntPtr(mousePositon.Y));
 }
Ejemplo n.º 2
0
 //-------------------------------------------------------------
 // 概要:ウィンドウドラッグ開始
 // 詳細:タイトルバーをクリックしたことにする
 //-------------------------------------------------------------
 public static void WindowDragStart(IntPtr handle)
 {
     Logger.Instance.DebugFormat("WindowDragStart(handle:{0})", handle);
     Win32API.SendMessage(handle, (int)WindowsMessage.WM_NCLBUTTONDOWN, new IntPtr((int)HitTest.Caption), new IntPtr(0));
 }