我想在使用单击按钮时删除选定的行。
到目前为止,代码如下所示:
this->grid_ = new wxGrid(parent, ...)
this->grid_->SetSelectionMode(wxGrid::wxGridSelectCells);
// Later, whene the button is clicked
this->grid_->SetFocus();
wxGridCellCoordsArray wx_cells = this->grid_->GetSelectedCells();
问题是无论我选择什么,该wx_cells
变量始终为空。我尝试使用 GetSelectedRows 没有成功。我已经添加SetFocus
并SetSelectionMode
希望它会有所帮助,但它没有。
我怎样才能让它工作?