gpt4 book ai didi

c# - 如何在 C# 中从 IFileDialogCustomize GetEditBoxText() 获取字符串

转载 作者:行者123 更新时间:2023-11-30 05:30:51 33 4
gpt4 key购买 nike

我正在尝试通过 COM 调用在 C# 中使用 IFileDialogCustomize 接口(interface)。我调用 GetEditBoxText(id, buffer) 定义为:

    [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
HRESULT GetEditBoxText([In] int dwIDCtl, [Out] IntPtr ppszText);

我从 https://msdn.microsoft.com/en-us/library/windows/desktop/bb775908(v=vs.85).aspx 得到的

我写的代码是:

        IntPtr buffer = Marshal.AllocCoTaskMem(sizeof(int));
string textboxString;
var customizeDialog = GetFileDialog() as IFileDialogCustomize;
if (customizeDialog != null)
{
HRESULT result = customizeDialog.GetEditBoxText(id, buffer);
if (result != HRESULT.S_OK)
{
throw new Exception("Couldn't parse string from textbox");
}
}
textboxString = Marshal.PtrToStringUni(buffer);
Marshal.FreeCoTaskMem(buffer);
return textboxString;

字符串总是返回奇数字符,例如벰∔。

我刚开始使用 Com 接口(interface)并且从未进行过 C++ 编程,所以我在这里有点迷路。为什么我没有从此处的文本框中获取实际字符串?

最佳答案

我想通了。它结合了 Jacob 所说的和更改 Com 调用的签名。而不是

    [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
void GetEditBoxText([In] int dwIDCtl, [Out] IntPtr ppszText);

我需要签名:

    [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
HRESULT GetEditBoxText([In] int dwIDCtl, out IntPtr ppszText);

这实际上正确地传递了 IntPtr 并且我能够使用

获取字符串
    Marshal.PtrToStringUni(buffer);

关于c# - 如何在 C# 中从 IFileDialogCustomize GetEditBoxText() 获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35786491/

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