3

我想在 MFC 中使用富编辑控件的下划线颜色

但是,在 afxwin.h 中,_RICHEDIT_VER 定义了 0x210。像这样,

#define _RICHEDIT_VER 0x0210

我正在加载“msftedit.dll”(8.1 版本)和 Windows10 SDK(10.0.16299.0)但是,bUnderlineColor 是在 Richedit.h 中编码的

#if (_RICHEDIT_VER >= 0x0800)
    BYTE        bUnderlineColor;    // Underline color
#endif

如果我不使用包装类(CRichEditCtrl),我可以在 MFC 项目中使用它吗?如何?

4

1 回答 1

4

您可以声明自己的结构并添加bUnderlineColor. 使用这个CRichEdit::SendMessage(EM_SETCHARFORMAT...)

这种方法虽然是hack。也许有更好的方法来说服 MFC 合作。

#ifdef UNICODE
struct MY_CHARFORMAT8 : _charformatw //<--- edited
#else
struct MY_CHARFORMAT8 : _charformat
#endif
{
    WORD        wWeight;            // Font weight (LOGFONT value)
    SHORT       sSpacing;           // Amount to space between letters
    COLORREF    crBackColor;        // Background color
    LCID        lcid;               // Locale ID
    union
    {
        DWORD       dwReserved;     // Name up to 5.0
        DWORD       dwCookie;       // Client cookie opaque to RichEdit
    };
    SHORT       sStyle;             // Style handle
    WORD        wKerning;           // Twip size above which to kern char pair
    BYTE        bUnderlineType;     // Underline type
    BYTE        bAnimation;         // Animated text like marching ants
    BYTE        bRevAuthor;         // Revision author index
    BYTE        bUnderlineColor;    // Underline color
};

MY_CHARFORMAT8 format;
memset(&format, sizeof(format), 0);
format.cbSize = sizeof(format);
format.dwMask = CFM_UNDERLINETYPE | CFM_UNDERLINE;
format.dwEffects = CFE_UNDERLINE;
format.crBackColor = RGB(255,0,0);
format.bUnderlineType = CFU_UNDERLINEHAIRLINE;
format.bUnderlineColor = 0x06; //red underline color
m_richedit.SetSel(0, -1);
m_richedit.SendMessage(EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&format);

需要初始调用AfxInitRichEdit()

富编辑控件必须使用Create(不使用SubclassDlgItemor DDX_Control)手动创建,例如:

m_richedit.Create(ES_MULTILINE | WS_VISIBLE | WS_CHILD, rc, this, id);

结果:
在此处输入图像描述

于 2018-01-19T03:50:47.573 回答