上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: 鼠标事件 #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <QDebug> #include <QMouseEvent> #include <QEvent> #include <QMenu> #inc 阅读全文
posted @ 2020-05-17 16:00 祁峰_1024 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 以下示例摘自豆子的qt学习之路 int main(int argc, char *argv[]) { QApplication app(argc, argv); //创建一个文件对象,并用这个文件对象打开文件 "in.txt" QFile file("in.txt"); //以只读方式打开文件,判断 阅读全文
posted @ 2020-05-13 21:02 祁峰_1024 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 输入一个英文句子,翻转句子中单词的顺序,但单词内字符的顺序不变。为简单起见,标点符号和普通字母一样处理。例如输入字符串"I am a student. ",则输出"student. a am I"。 示例 1: 输入: "the sky is blue" 输出: "blue is sky the" 阅读全文
posted @ 2020-05-12 20:15 祁峰_1024 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 计算方式: 抽奖。每次有2%几率抽中6星人物,如果超过50抽都没抽到,则下一次(第51次)抽中概率+2%,以此类推 #include <iostream> #include <stdlib.h> #include <time.h> #include <windows.h> int rand_2(vo 阅读全文
posted @ 2020-05-07 15:05 祁峰_1024 阅读(657) 评论(0) 推荐(0) 编辑
摘要: 首先先建一个工程 然后进入ui界面,拖动出来一个界面 给他们分别取一些名字 比如 preBtn nextBtn deleteBtn addBtn fileBtn picturelabel 首先第一个按钮:打开文件 编写槽函数 要求点击之后进入标准文件对话框,所以引入头文件 #include <QFi 阅读全文
posted @ 2020-05-05 01:38 祁峰_1024 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 添加一个图片,改变图片大小,适应label Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this); QPixmap map("C:/Users/Administrator/ 阅读全文
posted @ 2020-05-04 01:19 祁峰_1024 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 做一个示例 首先在主窗体加一个按钮 然后转到槽 这两种方法都可以调用颜色对话框: void Widget::on_pushButton_clicked() { QColorDialog a(this); a.exec(); } void Widget::on_pushButton_clicked() 阅读全文
posted @ 2020-05-03 21:01 祁峰_1024 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 随便新建一个主窗体 再随便建一个对话框dialog 接下来在主函数中调用dialog 第一种: #include "widget.h" #include "dialog.h" #include <QDebug> #include <QApplication> int main(int argc, c 阅读全文
posted @ 2020-05-03 16:58 祁峰_1024 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 或者也可以 ui->label->setPixmap(QPixmap("C:/Users/Administrator/Desktop/123.png")); 这样就可以添加一个图片在label上了 第二种方法: 将图片添加资源文件中 首先新建一个资源文件夹 或者 也可以将图片添加进去 阅读全文
posted @ 2020-04-30 01:51 祁峰_1024 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 做一个运行界面 首先拖拽ui界面,看起来基本差不太多 当combobox中没有文字时,确定按钮无效 编写一个槽函数 void Widget::updatebtnstate(QString str) { //combobox的文本为空时 if(str.isEmpty()) { //surebutton 阅读全文
posted @ 2020-04-28 12:36 祁峰_1024 阅读(311) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页