c#r如何做到一串字符的一个字符颜色不同 |
|
5分
#1 |
使用RichTextBox文本控件,使用html代码控制。
使用string的replace函数,比如把字符#全部换成<font color=”red”>#</font> |
30分
#2 |
asp:Literal id=”Test” value=”你好” cs文件
string.Replace(“好”,“<font style=”color:red”></font>”) |
#3 |
回复1楼: |