0

我想创建一个动态网格视图,并在该网格视图内,我想将该网格视图与一个列表框项绑定。我希望gridview的前两列作为复选框,第三项作为列表框中的项目。我想要这样的东西

foreach (ListItem item in Listbox1.Items)
{
    if (item.Selected)
    {
        Listbox2.Items.Add(new ListItem(item.Text, item.Value));
    }
}

GridView gridview1 = new GridView();
foreach(ListItem item in Listbox2.Items)
{
    CheckBoxField chk = new CheckBoxField();

    chk.HeaderText = "Test1";

    gridview1.Columns.Add(chk);

    CheckBoxField chk2 = new CheckBoxField();

    chk.HeaderText = "Test2";

    gridview1.Columns.Add(chk);

    // another columns that displays the item from the list box
    // another column that displays the value of the item of the listbox, but the column is hidden.
}

我怎样才能做到这一点?

4

1 回答 1

0

您只需为 GridView 的 on databound 事件添加一个事件处理程序,这意味着您可以访问当前行、列和该行的数据,然后使用任何选项(文本、选中、禁用等)将控件添加到该行你需要。

于 2012-11-21T06:49:03.790 回答