标签: qt
可以从QDialog中删除关闭按钮吗?
答案 0 :(得分:9)
使用window flags。 例如:
QDialog d(0, Qt::CustomizeWindowHint|Qt::WindowTitleHint); d.exec();