Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我将 Datagridview 列命名为“类”,它给了我一条消息“‘类’不是有效的标识符”有人可以帮助我吗?
您可以以编程方式完成,而不是在表单设计器中:
Dim dg As New DataGridView dg.Columns.Add("Class", "ClassHeader")
我认为您不能在 VB.Net 中将您的列称为“类”,因为它是一个关键字。几乎可以将其命名为其他任何名称。