需求

qt 默认情况下,控件之间的间隙比较大,不好看,需要减少间隙

解决

这个其实很简单,直接调用 api 即可。

layout_->setContentsMargins(0,0,0,0);
layout_->setSpacing(0);

参考