如何在visual studio 2010版中做web时向table控件中添加一列复选框
展开全部
1,直接添加控件
for(int i = 0; i < tableCount; ++i) {
const QString table = tableNames.at(i);
{
QWidget *widget = new QWidget(ui->tableWidget_table);
QHBoxLayout *hLayout = new QHBoxLayout();
QCheckBox *checkBox = new QCheckBox();
hLayout->塌派addWidget(checkBox);
hLayout->setMargin(0); // 必哪衫团须添加, 否则CheckBox不能正常显李橘示
hLayout->setAlignment(checkBox, Qt::AlignCenter);
widget->setLayout(hLayout);
ui->tableWidget_table->setCellWidget(i, TABLE_CHECKED_COLUMN, widget);
}
2,使用代理 实例里面有的
for(int i = 0; i < tableCount; ++i) {
const QString table = tableNames.at(i);
{
QWidget *widget = new QWidget(ui->tableWidget_table);
QHBoxLayout *hLayout = new QHBoxLayout();
QCheckBox *checkBox = new QCheckBox();
hLayout->塌派addWidget(checkBox);
hLayout->setMargin(0); // 必哪衫团须添加, 否则CheckBox不能正常显李橘示
hLayout->setAlignment(checkBox, Qt::AlignCenter);
widget->setLayout(hLayout);
ui->tableWidget_table->setCellWidget(i, TABLE_CHECKED_COLUMN, widget);
}
2,使用代理 实例里面有的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询