0

大家好,我在 for 循环中的程序中有一些变量,变量的值将在 for 循环中动态出现。我想将这些值绑定到网格视图。我知道如何将 SQL 服务器数据绑定到网格。但是这里怎么处理。如何排列列值。任何人都可以帮助我。

我有这些变量

string changedFile  
int parentIssue 
List<String> Authors

我想在 for 循环中将这 3 个字段添加到网格视图中。有没有办法写出for循环的一面?

4

3 回答 3

1

只需将列表分配为数据源。

dataGridView1.DataSource = Rows;

您可以在 select 语句中排列列。

private System.Windows.Forms.DataGridViewComboBoxColumn Authors;
this.Authors.HeaderText = "Authors";
this.Authors.Name = "Authors";
this.dataGridView1.Columns.Add(this.Authors);
this.Authors.Items.AddRange(new object[] {
            "Ayn Rand",
            "Tagore"});
于 2012-05-25T07:15:02.163 回答
1

你可以试试这样的

public class BindingObject
{
    public int intMember;
    public string stringMember;
    public string nullMember;
    public BindingObject(int i, string str1, string str2)
    {
        intMember = i;
        stringMember = str1;
        nullMember = str2;
    }
} 

////Somewhere
ArrayList list = new ArrayList();
list.Add(new BindingObject(1, "One", null));
list.Add(new BindingObject(2, "Two", null));
list.Add(new BindingObject(3, "Three", null));
dataGrid1.DataSource = list;
于 2012-05-25T07:19:22.527 回答
0

如果你必须在循环本身中设置,你必须在 aspx 中为 gridview 定义一个模板

<asp:GridView ID="gridViewField" ClientIDMode="Static"   runat="Server" AutoGenerateColumns="false"
               onrowdatabound="gridViewField_RowDataBound"  HorizontalAlign="Center"  AlternatingRowStyle-BackColor="#ddecfe" >
               <Columns>                   
                   <asp:TemplateField HeaderText="Field Name">
                       <ItemTemplate>
                           <asp:Label runat="server" ID="lblFieldName"></asp:Label>
                       </ItemTemplate>
                   </asp:TemplateField>
</columns>
</asp:GridView>

在 for 循环中,您可以获取代码隐藏 cs 文件中的每一行,如下所示

var lblFieldName= gridViewField.Rows[i].FindControl("lblFieldName") as Label
lblFieldName.Text=your loop data

我是你的循环变量

于 2012-05-25T07:04:49.690 回答