我有一個WinForms,Application.Run之前(新Form1的())我發送消息給其他應用程序WinForms:有沒有辦法在Application.Run(新的Form1())之前獲得窗口句柄?
[DllImport("user32.dll")]
public static extern long SendMessage(IntPtr Handle, int Msg, int wParam, int lParam);
,但我不能讓窗口的句柄,我想:
IntPtr Handle = Process.GetCurrentProcess().Handle;
但有時它會返回錯誤的句柄。
我該怎麼做?非常感謝你!