CWnd::BindProperty

Binds a cursor-bound property on a data-bound control (such as a grid control) to a data-source control and registers that relationship with the MFC binding manager.

void BindProperty(
   DISPID dwDispId,
   CWnd * pWndDSC
);

Параметры

  • dwDispId
    Specifies the DISPID of a property on a data-bound control that is to be bound to a data-source control.

  • pWndDSC
    Points to the window that hosts the data-source control to which the property will be bound. Call GetDlgItem with the resource ID of the DCS's host window to retrieve this pointer.

Заметки

The CWnd object on which you call this function must be a data-bound control.

Пример

BindProperty might be used in the following context:

BOOL CMyDlg::OnInitDialog()
{


...


CWnd* pDSC = GetDlgItem(IDC_DATASOURCE);
CWnd* pMyBound = GetDlgItem(IDC_MYBOUNDCTRL2);
pMyBound->BindProperty(0x1, pDSC);


...


    return TRUE;
}

Требования

Header: afxwin.h

См. также

Основные понятия

CWnd Class

CWnd Members

Hierarchy Chart

CWnd::GetDSCCursor

CWnd::BindDefaultProperty