您说的应该是下图这种效果吧,但是我不明白什么是在编辑状态,正常的选中这个textfield的后可以设置字体的颜色和背景颜色的。(在界面工具栏中),也可以通过代码来设置
- _textControl.TextFields.Add(new TextField("dfdfdfdf"));
- TextField tf = _textControl.TextFields.GetItem(0);
- _textControl.Selection.Start = tf.Start;
- _textControl.Selection.Length = tf.Length;
- _textControl.Selection.ForeColor = Color.Blue;
复制代码
|