向ListBox中添加元素

向ListBox中添加元素,第1张

是用ListBox控件

ListBoxItem item = new ListBoxItem()

            item.Content = "ListBoxItem"

            this.lb.Items.Add(item)

添加HTML Radio按钮实现选中一行

若使用了<AlternatingItemTemplate>则在其中添加如下代码:

<td><input name="SelectRadio" type="radio" value='<%# Eval("ID")%>' onclick="SelectRow(this.value)"/>Select</td>

在<LayoutTemplate>中添加:<th >SelectRow</th>

在<ItemTemplate>中添加:

<td><input name="SelectRadio" type="radio" value='<%# Eval("ID")%>' onclick="SelectRow(this.value)"/>Select</td>


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存