如何在visual studio 2010版中做web时向table控件中添加一列复选框

如何在visual studio 2010版中做web时向table控件中添加一列复选框,第1张

1,直接添加控件

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顺利。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11324514.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存