摘要:
setCentralWidget(new QGraphicsView()); 阅读全文
摘要:
#include "mainwindow.h" #include "ui_mainwindow.h" #include <QDockWidget> #include <QLabel> #include <QMessageBox> #include <QStackedWidget> MainWindo 阅读全文
摘要:
void MainWindow::on_pushButton_clicked() { QMessageBox *msgbox_ = new QMessageBox(this); msgbox_->setWindowTitle(tr("模态框")); msgbox_->setWindowModalit 阅读全文
摘要:
//内容显示 QMessageBox msgBox; msgBox.setText("The document has been modified."); msgBox.exec(); //选择信息框 QMessageBox msgBox2; msgBox2.setText("The documen 阅读全文
摘要:
阅读全文
摘要:
//状态栏 QStatusBar *statusbar = new QStatusBar(this); setStatusBar(statusbar); 阅读全文
摘要:
view_->scale(2.0,2.0); //放大两倍 view_->scale(0.5,0.5); //缩小两倍 view_->resetMatrix(); //重置 阅读全文
摘要:
#include "mainwindow.h" #include <QMenu> #include <QMenuBar> #include <QToolBar> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { QMenu 阅读全文