Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我添加QWidget到QSplitter时,子小部件的标题/标题栏会自动隐藏。有没有办法展示它??
QWidget
QSplitter
前任:
QSplitter* sp = new QSplitter(); QWidget* wid = new QWidget(); wid->setWindowTitle("Mytitle); sp->addWidget(wid);
在这种情况下,wid 标题栏会自动隐藏,我想显示它。