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

C#中用RichTextBox实现图文混排和保存的例子

时间:2016-12-13 06:52:09      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:str   init   mode   file   generic   void   selected   board   create   

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.IO;

namespace test
{
	/// <summary>
	/// Description of MainForm.
	/// </summary>
	public partial class MainForm : Form
	{
		public MainForm()
		{
			//
			// The InitializeComponent() call is required for Windows Forms designer support.
			//
			InitializeComponent();
			
			//
			// TODO: Add constructor code after the InitializeComponent() call.
			//
		}
		
		void Button1Click(object sender, EventArgs e)
		{
			richTextBox1.Focus();
			richTextBox1.Select(0, richTextBox1.Rtf.Length);
		}
		
		void Button2Click(object sender, EventArgs e)
		{
			Clipboard.SetData(DataFormats.Rtf, richTextBox1.SelectedRtf);//
		}
		
		void Button4Click(object sender, EventArgs e)
		{
			Clipboard.SetData(DataFormats.Rtf, richTextBox1.SelectedRtf);//复制RTF数据到剪贴板

            richTextBox1.SelectedRtf="";//再把当前选取的RTF内容清除掉,当前就实现剪切功能了.
		}
		
		void Button3Click(object sender, EventArgs e)
		{
			richTextBox1.Focus();
			richTextBox1.Paste();//
		}
		
		void Button5Click(object sender, EventArgs e)
		{
			FileStream fs=new FileStream("F:\\ppp.rtf",FileMode.Create ,FileAccess.Write);
			richTextBox1.SaveFile(fs,RichTextBoxStreamType.RichText);
			fs.Close();
		}
	}
}

 技术分享

C#中用RichTextBox实现图文混排和保存的例子

标签:str   init   mode   file   generic   void   selected   board   create   

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

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