没有显示Richtext的第一行..工具条控件

时间:2012-09-12 17:53:19

标签: c#

这是我的应用程序的结果输出表单。我正在使用richtextbox加载结果文件。结果以前一个表格计算并保存到文件中。此文件在结果表单

中加载到Richtextbox控件中
private void frmResults_Load(object sender, EventArgs e)
        {

            this.Icon = Program.AppIcon;
            _mode = Mode.Load;
            richTabular.Left = 0;
            richTabular.Top = 0;
            richTabular.Size = this.ClientSize;
            this.Location = new Point(0, 0);
            this.Location = new Point(0, 0);
  FileInfo fil = new FileInfo(Program.caseFile + ".rpt");
            if (fil.Exists)
            {
                try
                {

                    if (fil.Length < 64000000)
                    {
                        richTabular.LoadFile(Program.caseFile + ".rpt", RichTextBoxStreamType.PlainText);
                        toolStripStatusLabel2.Text = Program.caseFile + ".rpt";
                        //  richTabular.LoadFile("RVEST.rpt", RichTextBoxStreamType.PlainText);
                    }
                }

    }

这是输出在屏幕上的显示方式。 enter image description here 现在这个输出可以保存,打印....所有这些命令都可供用户使用。我已经使用了工具条控件。看起来Menustrip-ToolStripMenuItem覆盖了前一种情况的第一行输出。这就是保存文件的样子,看起来应该是这样的。第一个(上一个)屏幕截图中缺少第一行。

enter image description here

输出不同(见快照)。

第一次屏幕截图中缺少“RVT Software Alpha 1.00.25”。可能是Menustrip-ToolStripMenuItem控件留空线?

任何建议

0 个答案:

没有答案