创建的问题: 属性设置: CTWndAttrs::E_WND_ID_LISTBOX, NULL, NULL,WS_CHILD| WS_VISIBLE| WS_VSCROLL| WS_HSCROLL| WS_TABSTOP 这样可以直接显示垂直滚动条 添加水平滚动条 在创建之后,利用消息机制告诉LISTBOX控件显示水平滚动条: LPTWINDOWPROPERTIESpWndproperty =m_wndAttrs.GetWindowProperty(CTWndAttrs::E_WND_ID_LISTBOX); RECT rect = {0}; GetClientRect(&rect); if( NULL == pWndproperty || \ false ==m_listbox.Create(pWndproperty->style, CRect(rect), \