手动放置工具栏Qt c ++

时间:2018-06-29 06:23:57

标签: c++ qt c++11 qt5

我的QMainWindow包含三个不同的窗口。 我想显示三个不同的工具栏。每个窗口一个。 现在,我显示一个工具栏,但不能将其恰好放在窗口上方。 我想知道是否有可能?

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent) {
    //here I declared a widget and my three windows.
    QToolBar *toolBar= addToolBar("window");
    addLine=new QAction("Add Line",this);
    removeLine=new QAction("Remove line",this);
    removeAll=new QAction("Remove all",this);
    toolBar->addAction(addLine);
    toolBar->addAction(removeLine);
    toolBar->addAction(removeAll);
}

0 个答案:

没有答案