C# RichTextBox制作文本编辑器

本文利用一个简单的小例子【文本编辑器】,讲解RichTextBox的用法。

Windows窗体中的RichTextBox控件用于显示,输入和操作格式化的文本,RichTextBox除了拥有TextBox控件的所有功能外,还可以显示字体,颜色,链接,从文件中读取和加载图像,以及查找指定的字符。RichTextBox控件通常用于提供类似字体处理程序(如Microsoft Word)的文本操作和显示功能。RichTextBox控件可以显示滚动条,且默认根据需要进行显示。

涉及知识点:

  • SelectionFont 获取或设置当前选定文本或插入点的字体。
  • FontStyle 指定应用到文本的字形信息。
  • SelectionAlignment  获取或设置应用到当前选定内容或插入点的对齐方式。
  • SelectionIndent 获取或设置所选内容开始行的缩进距离(以像素为单位)。
  • SelectionCharOffset 获取或设置控件中的文本是显示在基线上、作为上标还是作为基线下方的下标。
  • SelectionColor 获取或设置当前选定文本或插入点的文本颜色。
  • SelectionBackColor   获取或设置在 System.Windows.Forms.RichTextBox 控件中选中文本时文本的颜色。
  • SelectionBullet 获取或设置一个值,通过该值指示项目符号样式是否应用到当前选定内容或插入点。
  • Clipboard Paste 粘贴指定剪贴板格式的剪贴板内容【插入图片时使用】。
  • Find 在对搜索应用特定选项的情况下,在 System.Windows.Forms.RichTextBox 控件的文本中搜索位于控件内特定位置的字符串。

效果图如下【以下设置文本对应的格式】:

核心代码如下

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Printing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace DemoRichText.Model
{
 public class DefaultRickFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {

  }
 }

 /// <summary>
 /// 加粗格式
 /// </summary>
 public class BoldRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   Font oldFont = rtbInfo.SelectionFont;
   Font newFont;
   if (oldFont.Bold)
   {
    newFont = new Font(oldFont, oldFont.Style & ~FontStyle.Bold);//支持位于运算
   }
   else
   {
    newFont = new Font(oldFont, oldFont.Style | FontStyle.Bold);
   }
   rtbInfo.SelectionFont = newFont;
  }
 }

 /// <summary>
 /// 斜体
 /// </summary>
 public class ItalicRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   Font oldFont = rtbInfo.SelectionFont;
   Font newFont;
   if (oldFont.Italic)
   {
    newFont = new Font(oldFont, oldFont.Style & ~FontStyle.Italic);
   }
   else
   {
    newFont = new Font(oldFont, oldFont.Style | FontStyle.Italic);
   }
   rtbInfo.SelectionFont = newFont;
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 下划线
 /// </summary>
 public class UnderLineRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   Font oldFont = rtbInfo.SelectionFont;
   Font newFont;
   if (oldFont.Underline)
   {
    newFont = new Font(oldFont, oldFont.Style & ~FontStyle.Underline);
   }
   else
   {
    newFont = new Font(oldFont, oldFont.Style | FontStyle.Underline);
   }
   rtbInfo.SelectionFont = newFont;
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 删除线
 /// </summary>
 public class StrikeLineRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   Font oldFont = rtbInfo.SelectionFont;
   Font newFont;
   if (oldFont.Underline)
   {
    newFont = new Font(oldFont, oldFont.Style & ~FontStyle.Strikeout);
   }
   else
   {
    newFont = new Font(oldFont, oldFont.Style | FontStyle.Strikeout);
   }
   rtbInfo.SelectionFont = newFont;
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 左对齐
 /// </summary>
 public class LeftRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   rtbInfo.SelectionAlignment = HorizontalAlignment.Left;
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 居中对齐
 /// </summary>
 public class CenterRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   if (rtbInfo.SelectionAlignment == HorizontalAlignment.Center)
   {
    rtbInfo.SelectionAlignment = HorizontalAlignment.Left;
   }
   else
   {
    rtbInfo.SelectionAlignment = HorizontalAlignment.Center;
   }

   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 右对齐
 /// </summary>
 public class RightRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   if (rtbInfo.SelectionAlignment == HorizontalAlignment.Right)
   {
    rtbInfo.SelectionAlignment = HorizontalAlignment.Left;
   }
   else
   {
    rtbInfo.SelectionAlignment = HorizontalAlignment.Right;
   }

   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 缩进对齐
 /// </summary>
 public class IndentRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   //每次以10个像素进行缩进
   rtbInfo.SelectionIndent = rtbInfo.SelectionIndent + 10;
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 缩进对齐
 /// </summary>
 public class OutIndentRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   //每次以10个像素进行缩进
   rtbInfo.SelectionIndent = rtbInfo.SelectionIndent - 10;
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 下标
 /// </summary>
 public class SubScriptRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   if (rtbInfo.SelectionCharOffset < 0)
   {
    rtbInfo.SelectionCharOffset = 0;
   }
   else {
    rtbInfo.SelectionCharOffset = -5;
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 上标
 /// </summary>
 public class SuperScriptRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   if (rtbInfo.SelectionCharOffset > 0)
   {
    rtbInfo.SelectionCharOffset = 0;
   }
   else {
    rtbInfo.SelectionCharOffset = 5;
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 字体
 /// </summary>
 public class FontRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   FontDialog f = new FontDialog();
   if (f.ShowDialog() == DialogResult.OK)
   {
    FontFamily family = f.Font.FontFamily;
    rtbInfo.SelectionFont = new Font(family, rtbInfo.SelectionFont.Size, rtbInfo.SelectionFont.Style);
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 文本颜色
 /// </summary>
 public class ForeColorRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   ColorDialog f = new ColorDialog();
   if (f.ShowDialog() == DialogResult.OK)
   {

    rtbInfo.SelectionColor = f.Color;
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 文本背景颜色
 /// </summary>
 public class BgColorRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   ColorDialog f = new ColorDialog();
   if (f.ShowDialog() == DialogResult.OK)
   {

    rtbInfo.SelectionBackColor = f.Color;
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// UL列表,项目符号样式
 /// </summary>
 public class UlRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   if (rtbInfo.SelectionBullet)
   {
    rtbInfo.SelectionBullet = false;
   }
   else {
    rtbInfo.SelectionBullet = true;
    rtbInfo.BulletIndent = 10;
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 图片插入
 /// </summary>
 public class PicRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   OpenFileDialog o = new OpenFileDialog();
   o.InitialDirectory = AppDomain.CurrentDomain.BaseDirectory;
   o.Title = "请选择图片";
   o.Filter = "jpeg|*.jpeg|jpg|*.jpg|png|*.png|gif|*.gif";
   if (o.ShowDialog() == DialogResult.OK) {
    string fileName = o.FileName;
    try
    {
     Image bmp = Image.FromFile(fileName);
     Clipboard.SetDataObject(bmp);

     DataFormats.Format dataFormat = DataFormats.GetFormat(DataFormats.Bitmap);
     if (rtbInfo.CanPaste(dataFormat))
     {
      rtbInfo.Paste(dataFormat);
     }

    }
    catch (Exception exc)
    {
     MessageBox.Show("图片插入失败。" + exc.Message, "提示",
         MessageBoxButtons.OK, MessageBoxIcon.Information);
    }

   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 删除
 /// </summary>
 public class DelRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   rtbInfo.SelectedText = "";
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 查找
 /// </summary>
 public class SearchRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   string find = rtbInfo.Tag.ToString();
   int index= rtbInfo.Find(find, 0,RichTextBoxFinds.None);
   int startPos = index;
   int nextIndex = 0;
   while (nextIndex != startPos)//循环查找字符串,并用蓝色加粗12号Times New Roman标记之
   {
    rtbInfo.SelectionStart = index;
    rtbInfo.SelectionLength = find.Length;
    rtbInfo.SelectionColor = Color.Blue;
    rtbInfo.SelectionFont = new Font("Times New Roman", (float)12, FontStyle.Bold);
    rtbInfo.Focus();
    nextIndex = rtbInfo.Find(find, index + find.Length, RichTextBoxFinds.None);
    if (nextIndex == -1)//若查到文件末尾,则充值nextIndex为初始位置的值,使其达到初始位置,顺利结束循环,否则会有异常。
    {
     nextIndex = startPos;
    }
    index = nextIndex;
   }
   rtbInfo.Focus();
  }
 }

 /// <summary>
 /// 打印
 /// </summary>
 public class PrintRichFormat : BaseRichFormat
 {
  private RichTextBox richTextbox;

  public override void SetFormat(RichTextBox rtbInfo)
  {
   this.richTextbox = rtbInfo;
   PrintDocument pd = new PrintDocument();
   pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
   // 打印文档
   pd.Print();
  }

  private void pd_PrintPage(object sender, PrintPageEventArgs ev)
  {
   //ev.Graphics.DrawString(richTextbox.Text);
   //ev.HasMorePages = true;
  }
 }

 /// <summary>
 /// 字体大小
 /// </summary>
 public class FontSizeRichFormat : BaseRichFormat
 {
  public override void SetFormat(RichTextBox rtbInfo)
  {
   string fontSize = rtbInfo.Tag.ToString();
   float fsize = 0.0f;
   if (float.TryParse(fontSize, out fsize)) {
    rtbInfo.SelectionFont = new Font(rtbInfo.Font.FontFamily, fsize, rtbInfo.SelectionFont.Style);
   }
   rtbInfo.Focus();
  }
 }
}

页面代码【由于实现了代码封装,所有页面代码较少】

using DemoRichText.Model;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace DemoRichText
{
 public partial class MainForm : Form
 {
  public MainForm()
  {
   InitializeComponent();
  }

  public void btnButtonClick(object sender, EventArgs e) {
   Button btn = (Button)sender;
   BTNType btnType;
   if (Enum.TryParse<BTNType>(btn.Tag.ToString(), out btnType)) {
    if (btnType == BTNType.Search) {
     if (!string.IsNullOrEmpty(this.txtSearch.Text.Trim()))
     {
      this.rtbInfo.Tag = this.txtSearch.Text.Trim();
     }
     else {
      return;
     }

    }
    IRichFormat richFomat = RichFormatFactory.CreateRichFormat(btnType);
    richFomat.SetFormat(this.rtbInfo);
   }
  }

  private void combFontSize_SelectedIndexChanged(object sender, EventArgs e)
  {
   float fsize = 12.0f;
   if (combFontSize.SelectedIndex > -1) {
    if (float.TryParse(combFontSize.SelectedItem.ToString(), out fsize)) {
     rtbInfo.Tag = fsize.ToString();
     IRichFormat richFomat = RichFormatFactory.CreateRichFormat(BTNType.FontSize);
     richFomat.SetFormat(this.rtbInfo);
    }
    return;
   }
  }
 }
}

RichTextBox是一个功能丰富的控件,值得学习。

点击文末原文地址下载源码。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 简单实现winform编辑器

    本文实例为大家分享了winform编辑器的具体实现代码,供大家参考,具体内容如下 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Fo

  • C# RichTextBox制作文本编辑器

    本文利用一个简单的小例子[文本编辑器],讲解RichTextBox的用法. Windows窗体中的RichTextBox控件用于显示,输入和操作格式化的文本,RichTextBox除了拥有TextBox控件的所有功能外,还可以显示字体,颜色,链接,从文件中读取和加载图像,以及查找指定的字符.RichTextBox控件通常用于提供类似字体处理程序(如Microsoft Word)的文本操作和显示功能.RichTextBox控件可以显示滚动条,且默认根据需要进行显示. 涉及知识点: Selectio

  • Django框架使用富文本编辑器Uedit的方法分析

    本文实例讲述了Django框架使用富文本编辑器Uedit的方法.分享给大家供大家参考,具体如下: Uedit是百度一款非常好用的富文本编辑器 一.安装及基本配置 官方GitHub(有详细的安装使用教程):https://github.com/zhangfisher/DjangoUeditor 1. settings.py INSTALLED_APPS = [ ... 'DjangoUeditor', ... ] 2. 配置urls from django.conf.urls import url

  • Qt实现文本编辑器(二)

    目录 功能实现 功能: 功能1:动作消息 功能2:动作事件实现 功能3:文本编辑 总结 上一章节讲述了如何制作文本编辑页面,以及应该有哪些功能需要实现,只是做了展示效果,实际的点击事件并没有处理.今天来具体讲解下是如何实现菜单栏以及工具栏上对应的需求吧~ 功能实现 功能: 1.动作消息触发 2.具体功能:打开文件.新建文件.复制.剪切.粘贴 3.文本编辑功能:字体设置 今天只讲述以上三大功能,至于:旋转.缩放等功能都是针对于图片来说的,等下一章节,具体的讲解方式就不在是文本编辑器的功能了,静待后

  • ASP.NET网站使用Kindeditor富文本编辑器配置步骤

    1. 下载编辑器 下载 KindEditor 最新版本,下载页面: http://www.kindsoft.net/down.php 2. 部署编辑器 解压 kindeditor-x.x.x.zip 文件,将editor文件夹复制到web目录下  3.在网页中加入(ValidateRequest="false") 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" Validat

  • javascript 在线文本编辑器实现代码

    Editor body{ font-size:12px;} #ed{ height:300px; width:800px; background-color: } .sssss{ background-image:url(http://www.zzsky.cn/build/images/20099493121.gif)} .tag{ background-image:url(http://www.zzsky.cn/build/images/20099493121.gif);height:22px

  • xheditor所见即所得文本编辑器(代码高亮显示修改)

    所见即所得的文本编辑器目前在网上流传的已经有很多了,并且都比较优秀,就我个人而言,用过的有以下几个:     · 第一个接触的是ewebeditor,用在我的毕业设计里面,那时候是顺便选的,对这类东西也没什么了解,现在这个编辑器已经相当猛了:     · 后来工作中用了FCKEdier,原因很简单,这个文本编辑器已经有相应的asp.net服务器端控件,封装得很棒,不过毕竟是封装好了的控件,存在着一定的局限,而且目前这个文本编辑器已经全面改版,并且现在的名字叫CKEdier,现在所在公司的项目也是

  • 分享10个程序员常用的的代码文本编辑器

    通常操作系统和软件开发包中都包含文本编辑器,可以用来编辑配置文件,文档文件和源代码. 下面是笔者总结的10个最好的免费代码文本编辑器: 1.NOTEPAD++ NOTEPAD++是一款免费又优秀的文本编辑器,支持在MS Windows环境下运行的多种编程语言.NOTEPAD++支持超过50种编程.脚本和标记语言的语法高亮显示和代码折叠,能让用户迅速减小或扩大代码段以便查阅整个文档.用户也可以手动设置当前语言,覆盖默认语言.该程序还支持自动完成某些编程语言的API子集. 官方网站:http://n

  • Vue.js结合Ueditor富文本编辑器的实例代码

    在前端开发的项目中.难免会遇到需要在页面上集成一个富文本编辑器. 前一段时间公司Vue.js项目需要使用UEditor富文本编辑器,在百度上搜索一圈没有发现详细的说明,决定自己尝试,忙活了一天终于搞定了. 1. 总体思路 1.1 模块化 vue的很大的一个优势在于模块化,我们可以通过模块化实现页面和逻辑的复用.所以可以把Ueditor重新封装成一个.vue的模板文件.其他组件通过引入这个模板实现代码复用. 1.2 数据传输 首先父组件需要设置编辑器的长度.宽度.初始文本,这些数据可以通过prop

  • iOS实现富文本编辑器的方法详解

    前言 富文本编辑器不同于文本编辑器,国内做的比较好的比如有百度的UEditor和kindEditor.但是这两个也有它的缺点:界面过于复杂.不够简洁.UI设计也比较落后.不够轻量化,这篇文章我们将给大家介绍利用iOS如何实现富文本编辑器. 实现的效果 解决思路 采用webview加载一个本地html文件,该html内部编写好js方法用于与oc相互调用 最终输出该富文本字符串传输给服务器 为什么选择这样的方式 服务端要求我最终返回的数据格式为: { @"Id":"当时新建模板这

  • ASP.NET配置KindEditor文本编辑器图文教程

    1.什么是KindEditor KindEditor 是一套开源的在线HTML编辑器,主要用于让用户在网站上获得所见即所得编辑效果,开发人员可以用 KindEditor 把传统的多行文本输入框(textarea)替换为可视化的富文本输入框. KindEditor 使用 JavaScript 编写,可以无缝地与 Java..NET.PHP.ASP 等程序集成,比较适合在 CMS.商城.论坛.博客.Wiki.电子邮件等互联网应用上使用. 2.前期准备 到官网下载最新版的KindEditor 4.11

随机推荐