摘要:
string转wxstring :wxString(string.c_str())wxString转stringString(wxstring.mb_str()) 阅读全文
摘要:
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 } 阅读全文