问题描述
- Qt如何将QLayout提升为QWidget
-
现有继承自QDialog类的类A
void A::function()
{
……
1……QVBoxLayout vboxlayout = new QVBoxLayout( this ) ;
2……QHBoxLayout *hboxlayout = new QHBoxLayout( vboxlayout ) ; // 不行,()里的对象必须能转为QWidget
3……QPushButton *btnTemp = new QPushButton( hboxlayout ) ; // 同上
……
}
有没有方法可以实现第2和第3行,这样 child 和 parent 关系层次更清新。
上次在群里听到有人说可以把Qlayout提升为QWidget,可以实现么,怎么实现。
时间: 2024-12-30 19:01:23