Qt栅格布局的示例
QGridLayout * layout=new QGridLayout;
for(int i=0;i<10;i++)
{
for(int j=0;j<6;j++){
QLabel *label=new QLabel(this);
label->setText(QString("%1行%2列").arg(i).arg(j));
layout->addWidget(label,i,j);
}
}
ui->widget->setLayout(layout);
这样写程序会崩溃的:
QGridLayout * layout=new QGridLayout;
for(int i=0;i<10;i++)
{
for(int j=0;j<6;j++){
QLabel label;
label.setText(QString("%1行%2列").arg(i).arg(j));
layout->addWidget(&label,i,j);
}
}
ui->widget->setLayout(layout);
因为QLabel的生存周期太短了。
原文地址:https://blog.csdn.net/weixin_51883798/article/details/137638182
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!