欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#使用RichTextBox实现替换文字及改变字体颜色功能示例

程序员文章站 2023-11-21 12:40:52
本文实例讲述了c#使用richtextbox实现替换文字及改变字体颜色功能。分享给大家供大家参考,具体如下: 替换文字 private void generat...

本文实例讲述了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#程序设计有所帮助。