for(int i = 0i <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,使用代理 实例里面有的
一样的用法啊。<table>
<TR>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
<td>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</td>
</TR>
</table>
或许楼主想问的是后台添加吗?
可以这样
<table>
<tr>
<td runat="server" id="td1"></td>
</tr>
</table>
td1.Controls.Add()
Controls.Add()方法
可以添加任何你想要的服务器控件
希望LZ顺利。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)