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 }

你可能感兴趣的:(wxwidgets)