[DllImport("user32.dll", EntryPoint = "SendMessage")]
public static extern int SendMessage(
IntPtr hWnd, // handle to destination window
int Msg, // message
int wParam, // first message parameter
int lParam // second message parameter
);
麻烦高手给个例子,我有文件目录的话,怎么当做msg发送给一个已知句柄的窗口呢
慕村9548890