QVBoxLayout、QHBoxLayout中控件布局间隙设置:
//QVBoxLayout添加布局:
QVBoxLayout *layout = new QVBoxLayout(this);
layout->addWidget(m_stackWidget);
layout->addWidget(m_showTimeWidget);
layout->setContentsMargins(0, 0, 0, 0);
layout->setSpacing(0);//设置layout控件内部的间隙
layout->setMargin(0);//设置layout控件与父窗口的间隙
setLayout(layout);
同理QHBoxLayout布局参照以上代码设置。