我有一个使用 Spy++ 找到的窗口的十六进制值。
值为:00010010
感谢我之前提出的问题的答案,我有以下代码:
IntPtr hwndf = this.Handle;
IntPtr hwndParent = FindWindow("WINDOW HERE", null); ;
SetParent(hwndf, hwndParent);
this.TopMost = false;
现在,据我了解,IntPtr hwndParent 将包含窗口 WINDOW HERE 的句柄。如何重写该行以使用我的十六进制句柄?我试过:
IntPtr hwndParent = (IntPtr) 0x00010010
但它没有用。有任何想法吗?