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