码迷,mamicode.com
首页 > Windows程序 > 详细

在C#中如何将多个rtf文件内容组合在一起用一个rtf文件保存?

时间:2016-12-23 01:24:55      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:void   merger   uil   rgs   .net   gray   合并   merge   pre   

        //重点为是使用 SelectedRtf  属性
        private void button1_Click( object sender, EventArgs e )
        {
            //mergeRTF为并内容后的 RichTextBox 控件
            mergeRTF.SelectionLength = 0;       //不选内容


            RichTextBox rtf = new RichTextBox();        //需要合并的RTF
            StringBuilder s = new StringBuilder();

            //第一个RTF文件
            rtf.Text = "C#程序设计";
            rtf.SelectAll();

            Font f = null;
            f = new Font( "宋体", 12 ,FontStyle.Bold);

            rtf.SelectionFont = f;      //字体
            rtf.SelectionColor = Color.Red;

            //加入
            mergeRTF.SelectedRtf = rtf.SelectedRtf;

            //第二个RTF文件
            rtf.Text = "VB.NET程序设计";
            rtf.SelectAll();

            f = new Font( "楷体", 10, FontStyle.Italic );

            rtf.SelectionFont = f;      //字体
            rtf.SelectionColor = Color.Gray;

            //加入
            mergeRTF.SelectedRtf = rtf.SelectedRtf;

            //第三个RTF文件
            rtf.Text = "美利坚合众国";
            rtf.SelectAll();

            f = new Font( "黑体", 25, FontStyle.Underline | FontStyle.Bold | FontStyle.Italic );

            rtf.SelectionFont = f;      //字体
            rtf.SelectionColor = Color.Blue;

            //加入
            mergeRTF.SelectedRtf = rtf.SelectedRtf;

            //第N个
            //。。。。



        }

 

在C#中如何将多个rtf文件内容组合在一起用一个rtf文件保存?

标签:void   merger   uil   rgs   .net   gray   合并   merge   pre   

原文地址:http://www.cnblogs.com/China3S/p/6213387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!