0

我想将鼠标光标更改为我添加到名为 IDC_MY_CURSOR 的项目资源中的自定义光标。只要鼠标悬停在 CEdit 控件上,我就想将鼠标指针更改为光标。知道怎么做吗?

4

1 回答 1

4

要覆盖标准控件的默认行为,您必须提供自己的实现。使用 MFC 执行此操作的最直接方法是从标准控件实现(在本例中为CEdit )派生:

自定义编辑.h:

class CCustomEdit : public CEdit {
public:
    CCustomEdit() {}
    virtual ~CCustomEdit() {}

protected:
    DECLARE_MESSAGE_MAP()

public:
    // Custom message handler for WM_SETCURSOR
    afx_msg BOOL OnSetCursor( CWnd* pWnd, UINT nHitTest, UINT message );
};

自定义编辑.cpp:

#include "CustomEdit.h"

BEGIN_MESSAGE_MAP( CCustomEdit, CEdit )
    ON_WM_SETCURSOR()
END_MESSAGE_MAP()

BOOL CCustomEdit::OnSetCursor( CWnd* pWnd, UINT nHitTest, UINT message ) {
    ::SetCursor( AfxGetApp()->LoadCursor( IDC_MY_CURSOR ) );
    // Stop processing
    return TRUE;
}

您可以使用此类来动态创建CCustomEdit控件。或者,您可以创建一个标准的编辑控件(动态地或通过资源脚本),并CCustomEdit为其附加一个实例(参见DDX_Control):

void CMyDialog::DoDataExchange( CDataExchange* pDX ) {
    DDX_Control( pDX, IDC_CUSTOM_EDIT, m_CustomEdit );
    CDialogEx::DoDataExchange( pDX );
}
于 2015-07-11T17:14:13.120 回答