摘要:
1.在.h文件中包含相关头文件#include #include 2.在.h文件中定义动作对象QAction *editQAction *del;3.在.h文件中声明私有方法void contextMenuEvent(QContextMenuEvent *e);4.在.h文件中增加右键点击后动作槽声... 阅读全文
摘要:
设置剪贴板的内容QClipboard *clipboard = QApplication::clipboard();clipboard->setText("contents");获取剪贴板的内容QClipboard *clipboard = QApplication::clipboard();lin... 阅读全文
摘要:
//设置自动适应列宽ui->tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch); 阅读全文