我已尝试在C#上使用RichTextBox,并发现使用数千行长的文本太慢了。经过一些谷歌搜索,我发现这是因为.net默认使用RichEdit 2.0,而解决方案是使用RichEdit 5.0。
C# RichEditBox has extremely slow performance (4 minutes loading) SOLVED
它工作正常,文本显示在几秒而不是几分钟。但是,作为一个不关心个人项目兼容性的人,我想找到更高版本的RichEdit。我发现最新版本是8.0,其中全部以riched20.dll的形式发布,部分以msftedit.dll发布。
http://blogs.msdn.com/b/murrays/archive/2006/10/14/richedit-versions.aspx
http://blogs.msdn.com/b/murrays/archive/2012/03/03/richedit-8-0-preview.aspx
然而,msdn上的文档以4.1停止,并且(我认为是)该项目的开发人员声称他们不再在上述博客中执行公开文档。
https://msdn.microsoft.com/en-us/library/windows/desktop/bb787873(v=vs.85).aspx
到目前为止,我已经能够明确地运行msftedit.dll的RichEdit 2.0和5.0,但所有其他版本都没有。例如,尽管John Crenshaw的评论声称RichEdit 6.0工作正常,但我还是无法使用它。除上述msftedit-2.0和5.0组合之外的任何尝试都会导致" Window类名称无效" Application.Run()出错。 (该程序在C#中,但我没有标记它,因为我担心这个问题可能不是C#特定的问题。)代码是第一个链接中解决方案的近似精确副本,如下所示:
class Textbox : RichTextBox
{
[DllImport("kernel32.dll", EntryPoint = "LoadLibraryW", CharSet = CharSet.Unicode, SetLastError = true)]
private static extern IntPtr LoadLibraryW(string s_File);
public static IntPtr LoadLibrary(string s_File)
{
IntPtr h_Module = LoadLibraryW(s_File);
if (h_Module != IntPtr.Zero)
return h_Module;
int s32_Error = Marshal.GetLastWin32Error();
throw new Exception("LoadLibrary Failed with: "+s32_Error);
}
protected override CreateParams CreateParams
{
get
{
CreateParams i_Params = base.CreateParams;
try
{
// Available since XP SP1
LoadLibrary("MsftEdit.dll"); // throws
i_Params.ClassName = "RichEdit50W";
}
catch
{
// Windows XP without any Service Pack.
}
return i_Params;
}
}
我所做的是将ClassName字符串更改为不同的数字,例如RichEdit60W。
我在Windows 8.1上,因此msftedit.dll应该具有RichEdit 7.0或8.0(博客文章中给出的措辞不清楚),但我无法联系到它们。有没有办法纠正这个问题,还是更新版本的会员?
答案 0 :(得分:3)
RichEdit似乎主要是作为Office的一部分在Microsoft开发的,Windows中只包含1.0,2.0,3.0和4.1版本。
其他,可以在Microsoft Office安装中找到更高版本的RichEdit:您必须从他们位于" Program Files"下的位置明确地使用LoadLibrary();如果已安装Office。如果Office没有安装,那你就不走运了:这些其他版本不存在于裸Windows中,并且没有再分发许可证允许您用任何适当的编写方式分发它们。
所以,基本上,你运气不好。遗憾。
答案 1 :(得分:3)
我的机器上有RichEdit 8.0版,类名为RICHEDIT60W。它存储在C:\ Program Files(x86)\ Common Files \ Microsoft Shared \ OFFICE15 \ RICHED20.DLL中。当我为它编写包装器时,它工作得很好:
using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.ComponentModel;
class RichEdit80 : RichTextBox {
protected override CreateParams CreateParams {
get {
if (moduleHandle == IntPtr.Zero) {
string path = Environment.GetFolderPath(Environment.SpecialFolder.CommonProgramFilesX86);
path = System.IO.Path.Combine(path, @"Microsoft Shared\OFFICE15\RICHED20.DLL");
moduleHandle = LoadLibrary(path);
if ((long)moduleHandle < 0x20) throw new Win32Exception(Marshal.GetLastWin32Error(), "RichEdit control appears to be missing");
}
CreateParams createParams = base.CreateParams;
createParams.ClassName = "RichEdit60W";
if (this.Multiline) {
if (((this.ScrollBars & RichTextBoxScrollBars.Horizontal) != RichTextBoxScrollBars.None) && !base.WordWrap) {
createParams.Style |= 0x100000;
if ((this.ScrollBars & ((RichTextBoxScrollBars)0x10)) != RichTextBoxScrollBars.None) {
createParams.Style |= 0x2000;
}
}
if ((this.ScrollBars & RichTextBoxScrollBars.Vertical) != RichTextBoxScrollBars.None) {
createParams.Style |= 0x200000;
if ((this.ScrollBars & ((RichTextBoxScrollBars)0x10)) != RichTextBoxScrollBars.None) {
createParams.Style |= 0x2000;
}
}
}
if ((BorderStyle.FixedSingle == base.BorderStyle) && ((createParams.Style & 0x800000) != 0)) {
createParams.Style &= -8388609;
createParams.ExStyle |= 0x200;
}
return createParams;
}
}
private static IntPtr moduleHandle;
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
static extern IntPtr LoadLibrary(string lpFileName);
}
未经过彻底测试。希望你对这段代码感到非常不舒服,它实际上只是用于测试目的,看看你是否领先。 DLL的路径当然是Big Red标志,当您的计算机上没有Office 2013时,您必须更改它。要求用户在其计算机上安装了正确的Office版本,只有在对要运行程序的计算机进行适当控制时才能正常工作。在LoadLibrary()失败时使用回退路径在技术上是可行的。
此特定版本的功能以及它与工具箱中的默认RichTextBox不兼容的方式很难进行逆向工程。粗略的猜测是“与Word更兼容”。 Later RichEdit versions更好地支持数学方程式。只有通过彻底测试才能找到答案的方法。最好坚持使用msftedit.dll