Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 QLabel 或 QTextEdit 或其他任何可以做的事情中使用 Qt4 渲染 ANSI 颜色。
现在,QLabel(""\033[94m HELLO \033[0m"")按原样呈现字符串。
QLabel(""\033[94m HELLO \033[0m"")
如何渲染 ANSI 颜色或 Qt4 中有什么好的替代方法?
您需要解析字符串。QLabel 要么显示纯文本,要么显示 html。这意味着您很可能需要将其转换为 html 跨度。