我自己从CToolBar 继承了一个自己的类
然后自己在里面添加了 
一个CStatic成员变量 想控制一块我自己规定的矩形区域CStatic::Create
Call this member function to create a Windows static control and attach it to the CStatic object.You construct a CStatic object in two steps. First call the constructor CStatic, then call Create. Syntax
BOOL Create( LPCTSTR lpszText, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID = 0xffff );//其中UINT nID = 0xffff 
tempRect 为我已经画好的矩形区域m_wndDrawTool.m_SelectBox.Create("",WS_CHILD | WS_VISIBLE | SS_BITMAP,tempRect,&m_wndDrawTool,0xFFFF);然后老是出错,怀疑最后一个参数
想请问高手最后一个参数应该写什么啊
急啊,在线等待!