这篇文章主要介绍了C#使用RichTextBox实现替换文字及改变字体颜色功能,结合实例形式洗了C#中RichTextBox组件文字替换及改变字体颜色相关操作技巧,需要的朋友可以参考下
本文实例讲述了C#使用RichTextBox实现替换文字及改变字体颜色功能。分享给大家供大家参考,具体如下:
替换文字
private void GenerateEntity()
{
try
{
string result = ChangeWords("specific content...");
txtContent.Text = result;
ChangeColor();
}
catch (Exception ex)
{
MessageBox.Show("类生成失败!错误信息:" + ex.Message);
}
}
private string ChangeWords(string content)
{
//先替换"nvarchar"、"varchar"、"nchar",再替换"char"
//不然"nvarchar"、"varchar"、"nchar"就会被替换为
//nvarstring"、"varstring"、"nstring"不能进行原有规则替换
string result = Regex.Replace(content, "nvarchar", "string");
//进行下一步替换的时一定要以上一步替换的返回结果为数据源而不是content
//因为content值没有改变
result = Regex.Replace(result, "varchar", "string");
result = Regex.Replace(result, "nchar", "string");
result = Regex.Replace(result, "char", "string");
result = Regex.Replace(result, "tinyint", "int");
result = Regex.Replace(result, "smallint", "int");
result = Regex.Replace(result, "bigint", "int");
result = Regex.Replace(result, "datetime", "DateTime");
return result;
}
改变字体颜色
要改变字体颜色一定要使用RichTextBox,普通的文本框不能实现为某些特殊文字添加颜色的功能。
private void ChangeColor()
{
txtContent.SelectionStart = 0;
txtContent.SelectionLength = txtContent.Text.Length;
txtContent.SelectionColor = Color.Black;
//列注释不为空时,改变列注释颜色
if (listDescription.Count > 0)
{
ChangeKeyColor(listDescription, Color.Green);
}
ChangeKeyColor("namespace", Color.Blue);
ChangeKeyColor("public", Color.Blue);
ChangeKeyColor("class", Color.Blue);
ChangeKeyColor("/// <summary>",Color.Gray);
ChangeKeyColor("///", Color.Gray);
ChangeKeyColor("/// </summary>", Color.Gray);
ChangeKeyColor("int", Color.Blue);
ChangeKeyColor("double", Color.Blue);
ChangeKeyColor("float", Color.Blue);
ChangeKeyColor("char", Color.Blue);
ChangeKeyColor("string", Color.Blue);
ChangeKeyColor("bool", Color.Blue);
ChangeKeyColor("decimal", Color.Blue);
ChangeKeyColor("enum", Color.Blue);
ChangeKeyColor("const", Color.Blue);
ChangeKeyColor("struct", Color.Blue);
ChangeKeyColor("DateTime", Color.CadetBlue);
ChangeKeyColor("get",Color.Blue);
ChangeKeyColor("set", Color.Blue);
}
public void ChangeKeyColor(string key, Color color)
{
Regex regex = new Regex(key);
//找出内容中所有的要替换的关键字
MatchCollection collection = regex.Matches(txtContent.Text);
//对所有的要替换颜色的关键字逐个替换颜色
foreach (Match match in collection)
{
//开始位置、长度、颜色缺一不可
txtContent.SelectionStart = match.Index;
txtContent.SelectionLength = key.Length;
txtContent.SelectionColor = color;
}
}
public void ChangeKeyColor(List<string> list, Color color)
{
foreach (string str in list)
{
ChangeKeyColor(str, color);
}
}
更多关于C#相关内容感兴趣的读者可查看本站专题:《C#常见控件用法教程》、《C#窗体操作技巧汇总》、《C#数据结构与算法教程》、《C#面向对象程序设计入门教程》及《C#程序设计之线程使用技巧总结》
希望本文所述对大家C#程序设计有所帮助。
沃梦达教程
本文标题为:C#使用RichTextBox实现替换文字及改变字体颜色功能示例
基础教程推荐
猜你喜欢
- winform把Office转成PDF文件 2023-06-14
- unity实现动态排行榜 2023-04-27
- C#类和结构详解 2023-05-30
- C# windows语音识别与朗读实例 2023-04-27
- ZooKeeper的安装及部署教程 2023-01-22
- C# 调用WebService的方法 2023-03-09
- 一个读写csv文件的C#类 2022-11-06
- C#控制台实现飞行棋小游戏 2023-04-22
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- C# List实现行转列的通用方案 2022-11-02