用 DevExpress.XtraRichEdit.RichEditControl 显示带有html代码的字符串颜色和字体都变了!我的html里面是黑色的到了里面变成不知道什么颜色 貌似是蓝色。哪位大师帮帮小弟。急急急
代码如下: 
  byte[] content = Encoding.UTF8.GetBytes("<html><head><meta http-equiv='Content-Type' content='text/html; gb2312'><style type='text/css'><!--.style3 {color: #0072A8}--></style></head><body bgcolor='#FFFFFF' topmargin='5' leftmargin='5' rightmargin='5' bottommargin='5' marginwidth='0' marginheight='0'>附件是公司最新通讯录,请及时查收,谢谢!</body></html>");
            Stream sr = new MemoryStream(content, false);
            richEditControl1.LoadDocument(sr, DevExpress.XtraRichEdit.DocumentFormat.Html);