2007年6月1日
摘要: #简单实现高亮语法编辑器(一) ——TextBox ,RichTextBox的局限性一、RichTextBox基本设置二、实现语法高亮三、关键字提示四、实现行号就简单快速得开发文本编辑器TextBox 最为简单,大家用得也多,缺点是无法实现复杂的操作。RichTextBox虽然是则功能比它强大很多。 图 1.1 输入框控件关系这里要实现以下功能的编辑器:1、实现语法高亮;2、关键... 阅读全文
posted @ 2007-06-01 10:46 石川 阅读(3738) 评论(1) 推荐(0) 编辑
摘要: 保存: private void btnSave_Click(object sender, System.EventArgs e) { FileStream stream = null; SqlConnection conn = null; SqlCommand cmd = null; try { richTextBox1.SaveFile( "temp.rtf" ); stream = new ... 阅读全文
posted @ 2007-06-01 10:03 石川 阅读(290) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Specialized;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Runtime.InteropServices;using System.Text;using System.Windows.Forms;na... 阅读全文
posted @ 2007-06-01 10:01 石川 阅读(461) 评论(0) 推荐(0) 编辑