wxWidgets中获取wxListCtrl列表中的东西

View Code
1 wxString MyFrame::GetItemInfo(int row,int col)
2 {
3 wxListItem Row_Info;
4 Row_Info.m_itemId=row;
5 Row_Info.m_col=col;
6 Row_Info.m_mask=wxLIST_MASK_TEXT;
7 m_listCtrl1->GetItem(Row_Info);
8
9 return Row_Info.m_text;
10 }

posted @ 2011-04-29 17:01  linyilong  阅读(541)  评论(0编辑  收藏  举报