共用方式為


CButton::SetCursor

呼叫此成員函式使新的資料指標 (Cursor) 與按鈕。

HCURSOR SetCursor(
   HCURSOR hCursor 
);

參數

  • hCursor
    游標的控制代碼。

傳回值

游標的控制代碼之前與按鈕。

備註

預設游標位於按鈕表面會自動放置,置中。 如果游標為按鈕太大,則對兩端都會裁剪。 您可以選擇其他對齊選項,包括下列項目:

  • BS_TOP

  • BS_LEFT

  • BS_RIGHT

  • BS_CENTER

  • BS_BOTTOM

  • BS_VCENTER

不同於 CBitmapButton,使用每個按鈕四個點陣圖, SetCursor 只使用每個這個按鈕的游標。 當按下時,游標會移出往右下方。

範例

CButton myIconButton;

// Create an icon button.
myIconButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_ICON, 
   CRect(10,10,60,50), pParentWnd, 1);

// If no image is defined for the button, define the image to the
// system arrow and question mark cursor.
if (myIconButton.GetCursor() == NULL)
   myIconButton.SetCursor(::LoadCursor(NULL, IDC_HELP));

需求

Header: afxwin.h

請參閱

參考

CButton 類別

階層架構圖

CButton::GetCursor

CBitmapButton::LoadBitmaps

Bitmaps