2
私は別のexeでコントロールのハンドルを取得するexeを実行しています。今私がやりたいことは、私のexeから特定のハンドルにメッセージを送ることです。ウィンドウハンドルにメッセージを送信
[DllImport("user32.dll")]
public static extern int SendMessage(
int hWnd, // handle to destination window
uint Msg, // message
long wParam, // first message parameter
long lParam // second message parameter
);
とあなたのような、送信するメッセージを定義:
public const int <WM_YOURMESSAGE> = <yourvalue>;
をし、その後、他の関数と同様のSendMessageを呼び出す