我发现了一些由 NoBugz ( Hans Passant ) 编写的旧代码,如果我理解的话,它会强制 Richtextbox 使用 RTF 5.0 而不是 4.0。基本上它只是一个继承RichTextBox
和覆盖CreateParams
属性的类
private static IntPtr moduleHandle;
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
static extern IntPtr LoadLibrary(string lpFileName);
protected override CreateParams CreateParams
{
get
{
if (moduleHandle == IntPtr.Zero)
{
moduleHandle = LoadLibrary("msftedit.dll");
if ((long)moduleHandle < 0x20) throw new Win32Exception(Marshal.GetLastWin32Error(), "Could not load Msftedit.dll");
}
CreateParams createParams = base.CreateParams;
createParams.ClassName = "RichEdit50W";
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;
}
}
当我执行此覆盖时,我无法让我的 RTF 显示超过第一行。例如
string rtf = @"{\rtf1\ansi\deff0{\fonttbl{\f0 Arial;}{\f1 Courier New;}}\viewkind4\uc1\pard\lang1033\f0\fs20 {\pard\f0\ul\b Activated Partial Thromboplastin Time\b0 : Collected: "
+ @"8/21/2012 4:15:00 AM\ulnon\f0\par}\par\pard\lang1033\f0\fs20 {\trowd"
+ @"\trql\trgaph100\trrh280\trleft0\intbl"
+ @"\cellx4000"
+ @"\cellx9500"
+ @"Activated Partial Thromboplastin Time\cell"
+ @"36.8 Seconds\cell"
+ @"\intbl\row}";
CustomRtb cRtb = new CustomRtb();
cRtb.Rtf = rtf;//Only the first line shows in the form...
新标准是对 Rtf 错误的宽容度大大降低还是什么?我需要 5.0 提供的更漂亮的表格格式
更新
如果我改变数据会显示
+ @"\trql\trgaph100\trrh280\trleft0\intbl"
到
+ @"\trql\trgaph100\trrh280\trleft0"
经过进一步测试,我发现 RTF 在 MS Word 中看起来不错。事实上,我们的代码使用 MsftEdit 生成 RTF,如下所示:
{\*\generator Msftedit 5.41.21.2510;}
. 我在 Word 中打开实际的 RTF,它看起来不错。我使用此代码,它与我在 word 中看到的非常匹配。我只需要删除一些边框。我将不得不做一些更深入的挖掘,以了解为什么 Msftedit 生成的 RTF 在表格中稍微不对齐。但是,是的,总的来说,这个问题超出了我在 SO 中可以做的范围。