CMFCButton::SetMouseCursor
设置光标图像。
void SetMouseCursor(
HCURSOR hcursor
);
参数
- [in] hcursor
光标的句柄。
备注
使用此方法将一个光标图像,例如手光标,与按钮。 光标从应用程序资源加载。
示例
下面的示例在 CMFCButton 选件类演示如何使用 SetMouseCursor 方法。 此示例是代码的一部分。新的控件示例的。
CMFCButton m_Button;
...
// int m_iCursor
void CPage1::OnSetCursor()
{
UpdateData();
switch (m_iCursor)
{
case 0:
m_Button.SetMouseCursor(NULL);
break;
case 1:
m_Button.SetMouseCursorHand();
break;
case 2:
m_Button.SetMouseCursor(AfxGetApp()->LoadCursor(IDC_CURSOR));
break;
}
}
要求
标头: afxbutton.h