摘要: string转wxstring :wxString(string.c_str())wxString转stringString(wxstring.mb_str()) 阅读全文
posted @ 2011-04-29 17:03 linyilong 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 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) 推荐(0) 编辑