gpt4 book ai didi

c# - 如何将 AutomationElement.NativeWindowHandle 转换为 IntPtr

转载 作者:行者123 更新时间:2023-11-30 19:18:27 28 4
gpt4 key购买 nike

我有一个 AutomationElement A(MS UI 自动化),它代表一个组合框。我想使用 Windows API 调用在该组合框中选择第 n 个项目

IntPtr ComboBox_SetCurSel(IntPtr hWnd, int index)

A.NativeWindowHandle 包含组合框的句柄,但为了将其传递给 ComboBox_SetCurSel,我需要将其从 intIntPtr

如何?

最佳答案

使用 IntPtr(int) 构造函数。

IntPtr WindowHandle = new IntPtr(A.Current.NativeWindowHandle);

关于c# - 如何将 AutomationElement.NativeWindowHandle 转换为 IntPtr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12730474/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com