CMFCPropertyGridCtrl::Create
建立屬性方格控制項並將其附加至屬性方格控制項物件。
virtual BOOL Create(
DWORD dwStyle,
const RECT& rect,
CWnd* pParentWnd,
UINT nID
);
參數
[in] dwStyle
位元組合 (或) 的 視窗樣式。[in] rect
指定視窗的大小和位置的週框,在 pParentWnd用戶端座標。[in] pParentWnd
指標到父視窗。 必須不是 NULL。[in] nID
子視窗的 ID。
傳回值
TRUE ,如果視窗成功建立,否則, FALSE。
備註
建立屬性方格控制項,請先呼叫 CMFCPropertyGridCtrl::CMFCPropertyGridCtrl 建構屬性方格物件。 然後呼叫 CMFCPropertyGridCtrl::Create。
範例
下列範例會在 CMFCPropertyGridCtrl 類別會示範如何使用 Create 方法。 這個範例是 新的控制項範例的一部分。
// CRect rectPropList
// CMFCPropertyGridCtrl m_wndPropList
// The this pointer points to a CPage5 class which extends the CMFCPropertyPage class.
m_wndPropList.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER, rectPropList, this, (UINT)-1);
需求
標題: afxpropertygridctrl.h