怎么用vs2005自制文本编辑器。
发布网友
发布时间:2022-05-02 05:46
我来回答
共2个回答
热心网友
时间:2022-07-01 10:40
....
全部改变好改
一个ForeColor就可以
我去试试单变某个段落的的
int a = this.richTextBox1.SelectionIndent;
取得它的位置
int b = this.richTextBox1.SelectionLength;
它的长度
this.richTextBox1.Select(a, b);
选中
this.richTextBox1.SelectionColor = Color.Red;
选中部分改为红色
this.richTextBox1.Select(a+b, b);
this.richTextBox1.SelectionColor = Color.Blue;
后边的改为蓝色
热心网友
时间:2022-07-01 10:41
是不是可以用 用户自定义控件??我觉得用自定义控件会比较方便,想实现什么效果都可以