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 }

相关文章:

  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-12-02
  • 2021-12-10
  • 2021-11-01
  • 2022-01-29
猜你喜欢
  • 2021-08-21
  • 2021-12-19
  • 2021-10-06
  • 2022-12-23
  • 2021-08-16
  • 2022-12-23
  • 2022-03-10
相关资源
相似解决方案