所以我在 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;