简体   繁体   中英

Changing Cursor of a button in MFC

I am trying to change cursor of a button in MFC dialog. i have used

BOOL CStartDlg::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
{
if ( m_changeCursor )
{
    ::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_HAND));
    return TRUE;
}

return CDialog::OnSetCursor(pWnd, nHitTest, message);
}

but it is changing cursor for whole dialog box. m_button is object of CButton class. Please tell me how to change cursor of a button.I have tryed this also but not working

m_button1.SetCursor(::LoadCursor(NULL, IDC_HAND));

Call the LoadCursor() function and pass its returned value to the CMFCButton::SetMouseCursor() member function. Here is an example:

BOOL CExerciseDlg::OnInitDialog()
{
    CDialogEx::OnInitDialog();

    // Set the icon for this dialog.  The framework does this automatically
    //  when the application's main window is not a dialog
    SetIcon(m_hIcon, TRUE);         // Set big icon
    SetIcon(m_hIcon, FALSE);        // Set small icon

    // TODO: Add extra initialization here
    m_Calculate.SetMouseCursor(LoadCursor(AfxGetInstanceHandle(),
                               MAKEINTRESOURCE(IDC_CURSOR1)));

    return TRUE;
}

refer http://www.functionx.com/visualc/controls/mfcbtn.htm#subtitle

also refer Api CWinApp::LoadCursor

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM