[System.Runtime.InteropServices.DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);
[System.Runtime.InteropServices.DllImport("User32.dll")]
public static extern IntPtr FindWindow(string strClassName, string strWindowName);
private const int WM_LBUTTONDOWN = 0x201;
private const int WM_LBUTTONUP = 0x202;