m_statusbarctrl.Create(WS_CHILD | WS_VISIBLE , CRect(0,0,0,0), this, 123456); int dim_part[4] = { 100,100,100,-1}; m_statusbarctrl.SetParts(4, dim_part );
m_statusbarctrl.SetIcon(0,m_hIcon);
m_statusbarctrl.SetText(L"11", 0 , 0);
m_statusbarctrl.SetText(L"22", 1,0);
m_statusbarctrl.SetText(L"33", 2, 0);
为什么状态栏只显示出一个 “11”,其它“22”,“33”没显示?是怎么回事?