我希望能够在消息框中显示格式化文本(如粗体文本,项目符号,斜体等)。
我遇到了this wonderful article,但似乎无法让它发挥作用。我在同一个链接上使用演示应用程序。
有人可以帮帮我吗?我尝试调试/理解代码是徒劳的。
约束:(不是我的选择)
应如何显示:
实际显示的方式:
答案 0 :(得分:3)
只需创建一个带RichEdit2控件的对话框...
在InitInstance中,添加以下呼叫:
// Init RichEdit Library
AfxInitRichEdit2();
在对话框中,为RichEdit控件创建一个变量并将其更新为:
// Turn Word Wrap on (based on window width)
m_RichEditMsg.SetTargetDevice( NULL, 0);
// Set Base Text
strText = "{\\rtf1\\ansi\\fs20 ";
strText += "{\\colortbl;\\red0\\green0\\blue0;\\red0\\green0\\blue255;\\red0\\green255\\blue255;\\red0\\green255\\blue0;\\red255\\green0\\blue0;}";
strText += "{\\f1\\cb1\\cf2\\b Main Title} \\par\\par \\fs18 Other text to add {\\b In Bold} no more in bolb ... \\par";
str.Format( "\\par Id: {\\b %s}", m_strProgId);
strText += str;
strText+= "\\par \\par {\\f1 \\b Please Confirm ...} \\par}";
// Update Controls
m_RichEditMsg.SetWindowText( strText);
只需构建自己的信息,就可以获得大胆的色彩......
答案 1 :(得分:0)
由于DavidK的非常有用的建议,我已经解决了这个问题(请参阅有关该问题的评论)。 FIX for Windows 2000评论整齐地解决了这个问题。