QAbstractItemView::SingleSelection
QAbstractItemView::ContiguousSelection
QAbstractItemView::ExtendedSelection
QAbstractItemView::MultiSelection
QAbstractItemView::NoSelection
單選 只能有一個項目被選中
連續選 只能夠被連續選中,例如按下shift后的效果
拓展選 效果和ContiguousSelection一樣,同時支持按鍵支持其他功能,ctrl,shift
多選 效果和按着ctrl一樣,當你單擊一個項目,再單擊另外項目,之前的那條不會被取消選中
無法選中 無法被選中
ui->tableView_showExecuteInfo->setSelectionMode(QAbstractItemView::MultiSelection);
ui->tableView_showExecuteInfo->setSelectionBehavior(QAbstractItemView::SelectRows);