討論串[問題] QT Table用法問題
共 5 篇文章
首頁
上一頁
1
下一頁
尾頁

推噓1(1推 0噓 7→)留言8則,0人參與, 最新作者xyz888x (ㄚ祥)時間16年前 (2009/02/07 02:34), 編輯資訊
1
0
0
內容預覽:
請問各位大師,QT Table中的item. 要. (1)如何得知使用者輸入的東西(有哪些可以function或變數可以得知). (2)與將處理過的資料,加入item中. tableWidget->setItem(0,1,new QTableWidgetItem("測試"));. 如上這行程式,好像

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者Cloud (抓不住...)時間16年前 (2009/02/07 09:44), 編輯資訊
1
0
0
內容預覽:
可以試試. QVariant return_value = tableWidget->Item(0,1);. int iValue = return_value.toInt(); //轉成數字. QString szValue = return_value.toString(); //轉成字串. 那

推噓0(0推 0噓 7→)留言7則,0人參與, 最新作者xyz888x (ㄚ祥)時間16年前 (2009/02/07 14:13), 編輯資訊
0
0
0
內容預覽:
(測試後). 我打上這兩行:. tableWidget->setItem(0,1,new QTableWidgetItem(tr(%1).arg(iValue)));. tableWidget->setItem(0,2,new QTableWidgetItem(szValue));. 回傳各為0,1

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者xyz888x (ㄚ祥)時間16年前 (2009/02/07 18:51), 編輯資訊
1
0
0
內容預覽:
(測試). tableWidget->setRowCount(5);. tableWidget->setColumnCount(5);. tableWidget->setItem(0,0,new QTableWidgetItem("123"));. //先設定table在(0,0)為123. QVa
(還有212個字)

推噓1(1推 0噓 0→)留言1則,0人參與, 最新作者Cloud (抓不住...)時間16年前 (2009/02/07 19:28), 編輯資訊
0
0
0
內容預覽:
sorry...我少加了一些東西..喝. QTableWidgetItem* return_value = tableWidget->item(0,0);. QString szValue = return_value->text();// 直接抓該item的text. tableWidget->s
(還有133個字)
首頁
上一頁
1
下一頁
尾頁