It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center




已关闭8年。





我正在做一个Delphi 7项目,我必须让用户输入一个数字(层下降)来构建一棵圣诞树,但是我还需要将输出显示为*(星号)。我在编辑TRichEdit中的某些星形星星时遇到问题,以使颜色随机变化,就像真实的圣诞树一样。

最佳答案

在丰富的编辑控件中进行格式化的工作方式是:首先选择文本,然后将格式应用于该选择。

选择具有SelStartSelLength属性的文本。

使用SelAttributes属性(例如SelAttributes.Color := clRed;)应用格式。

关于delphi - 如何在TRichEdit中更改某些字符的颜色? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6978850/

10-11 08:38