我想ComboBox_SetCurSel
在我的 C# 应用程序中使用 WinApi 函数。
为此,我插入以下语句:
[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr ComboBox_SetCurSel(IntPtr hWnd, int index);
当我运行程序时,我得到了错误
EntryPointNotFoundException ComboBox_SetCurSel user32.dll
Message=Can't find entry point "ComboBox_SetCurSel" in DLL "user32.dll".
我想这个错误是由于ComboBox_SetCurSel
不在 DLL 中user32.dll
,而是在其他一些 DLL 中引起的。
如果这是正确的,要修复此错误,我需要更改DllImport
声明。
问题:在什么DLL中ComboBox_SetCurSel
?