vc++中怎样向listbox中添加数据,并在一行显示

2024-11-23 22:02:22
推荐回答(2个)
回答1:

不要用List Box,用List Control控件
如果非用List Box不可,则用:
CString str;
str=ThePercent1+" , "+TheValue;
m_lstAuto.AddString(str);

回答2:

listbox.text=center