如何使用 Qt 无框窗口实现 QSizeGrip?

代码会是什么样的?

最佳答案

您只需在布局内窗口的一角添加 QSizeGrip 即可使其留在该角。

QDialog *dialog = new QDialog(0, Qt::FramelessWindowHint);
QVBoxLayout *layout = new QVBoxLayout(dialog);

// To remove any space between the borders and the QSizeGrip...
layout->setContentsMargins(QMargins());
// and between the other widget and the QSizeGrip
layout->setSpacing(0);
layout->addWidget(new QTextEdit(dialog));

// The QSizeGrip position (here Bottom Right Corner) determines its
// orientation too
layout->addWidget(new QSizeGrip(dialog), 0, Qt::AlignBottom | Qt::AlignRight);

dialog->show();

关于c++ - 如何在 Qt 无框窗口中实现 QSizeGrip?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7139559/

10-09 06:38