我有here中的GetComboBoxInfo示例代码
但是在下面的代码中收到错误代码87:
if(GetComboBoxInfo(comboBox1.Handle, ref cbi))
{
if(cbi.hwndEdit == IntPtr.Zero)
{
throw new Exception("ComboBox must have the DropDown style!");
}
}
并且总是以IntPtr.Zero的形式获取,但是上面的代码在32位操作系统中工作正常。 您能帮忙如何使以上代码在64位操作系统上工作吗?