0

所以我在 Windows 窗体应用程序中有一个 gridview,当我单击我的按钮时,gridview 被填充,标题列/行读取标签(因为我这样设置它(下面的代码))但是如果我想要标签标题怎么办替换为文本框中输入的内容,我将如何更改以下代码?

Tag = n.Element("GroupName").Value

完整代码:

        XDocument xDoc = XDocument.Load(tagUri);
        var Tag = xDoc.Descendants("Group")
            .Select(n => new
            {

                Tag = n.Element("GroupName").Value, // Tag in this line represents the column name, I would like this changed to be a textbox input. 
            })
            .ToList();

        dataGridView4.DataSource = Tag;

在此处输入图像描述

4

1 回答 1

2

之后您可以设置列的标题:

datagridView4.Columns[0].HeaderText = textbox1.Text;
于 2012-04-10T18:15:25.017 回答