1
我想有一個QTextEdit
和QPushButton
在QBoxLayout
,其中按鈕需要的尺寸儘可能小,文本編輯其餘所有。QBoxLayout添加QTextEdit全尺寸和QPushButton
到目前爲止,我想出了這個。
QPushButton* button = new QPushButton();
button->setText("Button");
QTextEdit* textedit = new QTextEdit();
QBoxLayout* boxLayout = new QBoxLayout(QBoxLayout::TopToBottom);
boxLayout->addWidget(textedit, 0, Qt::AlignTop);
boxLayout->addWidget(button, 0, Qt::AlignLeading);
mUI->centralWidget->setLayout(boxLayout);
textedit和按鈕之間仍有填充。我怎樣才能刪除它?
不起作用。我到底要把它放在哪裏? – Niklas
檢查我編輯的答案 – pnezis