摘要:
官网下载exe:https://www.smplayer.info/ 源码:https://github.com/smplayer-dev/smplayer windwos: 1、下载的源码,使用 qt5.9.8编译(mingw32)通过,运行后,发现如果不安装exe,编译生成的exe不能正常播放视 阅读全文
摘要:
QDateTimeEdit及QDateTime的使用 QString strYear = ui->dateTimeEdit->sectionText(QDateTimeEdit::YearSection); QString strMonth = ui->dateTimeEdit->sectionTe 阅读全文
摘要:
转自:https://www.pudn.com/news/62a88a12a11cf7345f9b03d8.html 由于工作需求,要使用QT执行cmd命令。鉴于网上的方法实现了适合自己的一种方法。 先放效果图 QProcess Class可用于完成启动外部程序,并与之交互通信。 创建并启动在 QP 阅读全文
摘要:
有时会用到左侧边栏,侧边栏上有按钮,点击按钮切换不同页面。 侧边栏类 cpp文件 1 #include "tabtitle.h" 2 3 TabTitle::TabTitle(int x, int y) 4 { 5 m_state = false; 6 m_titleItem = new QList 阅读全文
摘要:
const QList<QLineEdit*> lineEdits = ui->stackedWidget->currentWidget()->findChildren<QLineEdit*>(); for (QLineEdit *lineEdit : lineEdits) { qDebug() < 阅读全文
摘要:
//设定选择行为,按行选择 tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows); //设置选中行的背景色,必须要显示设置,即代码设置或者在ui文件的控件中设置,用系统默认的是无法代码选中高亮某行 tableWidget-> 阅读全文
摘要:
fromComboBox = QComboBox() 添加一个 combobox fromComboBox.addItem(rates) 添加一个下拉选项 fromComboBox.addItems(["%d years" % x for x in range(2, 26)]) 从序列中添加 fro 阅读全文
摘要:
this->setAttribute(Qt::WA_TranslucentBackground);//透明 this->setAttribute(Qt::WA_NoSystemBackground, false);//不继承父类窗口背景色 我发现了一个问题:上面两句代码顺序不同时,效果不一样。上述顺 阅读全文
摘要:
参考:https://blog.csdn.net/qq_45254369/article/details/125878621 左键按住,拖动窗口 头文件: #ifndef FRAME_H #define FRAME_H #include <QFrame> namespace Ui { class F 阅读全文
摘要:
点击按钮,出现一个下拉列表: 主要代码: void WgSetUp::AddItem() { QIcon myicon; //新建QIcon对象 myicon.addFile(tr("../data/skin/image/ui/MenuTools.png")); //让QIcon对象指向想要的图标 阅读全文