gpt4 book ai didi

c# - 使用 Windows API 从富文本控件检索文本的正确方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 13:51:43 24 4
gpt4 key购买 nike

下面的 GetRTF() 方法可以工作,但它仅检索元数据:

    public string GetRTF(IntPtr handle)
{
string result = String.Empty;
using (System.IO.MemoryStream stream = new MemoryStream())
{
EDITSTREAM editStream = new EDITSTREAM();
editStream.pfnCallback = new EditStreamCallback(EditStreamProc);
editStream.dwCookie = stream;

SendMessage(handle, EM_STREAMOUT, SF_RTF, ref editStream);

stream.Seek(0, SeekOrigin.Begin);
using (StreamReader reader = new StreamReader(stream))
{
result = reader.ReadToEnd();
}
}
return result;
}

private int EditStreamProc(MemoryStream dwCookie, IntPtr pbBuff, int cb, out int pcb)
{
pcb = cb;
byte[] buffer = new byte[cb];
Marshal.Copy(pbBuff, buffer, 0, cb);
dwCookie.Write(buffer, 0, cb);
return 0;
}

private delegate int EditStreamCallback(MemoryStream dwCookie, IntPtr pbBuff, int cb, out int pcb);

[StructLayout(LayoutKind.Sequential)]
private struct EDITSTREAM
{
public MemoryStream dwCookie;
public int dwError;
public EditStreamCallback pfnCallback;
}

[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern IntPtr SendMessage(IntPtr hwnd, uint msg, uint wParam, ref EDITSTREAM lParam);

private const int WM_USER = 0x0400;
private const int SF_RTF = 2;
private const int EM_STREAMOUT = WM_USER + 74;

所以当我用富文本控件的句柄调用 GetRTF() 时,返回值是:

     {\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fnil\fprq2\fcharset0 Tahoma;}}{\colortbl ;\red59\green59\blue59;}{\*\generator Riched20 14.0.6015.1000;}{\*\mmathPr\mwrapIndent1440}\viewkind4\uc1\pard\cf1\f0\fs17{\pict\wmetafile0}}

但这不是富文本控件显示的文本(它只是一个电子邮件地址)。

检索我要查找的数据的正确方法是什么?

最佳答案

您的代码已经检索了所有数据。这是控件内容的 RTF 表示形式。没有文本,因为您的控件中没有任何文本。它似乎只包含一个图元文件矢量图像。

如果您向该控件发送 WM_GETTEXT 消息以获取纯文本,那么您将一无所获。因为该控件不包含文本,仅包含图像。

关于c# - 使用 Windows API 从富文本控件检索文本的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13530637/

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