如何将实体模型绑定到具有特定列名称的WinForms DataGridView?
目前我正在做:
var items = from t in entity.Items
select new
{
Name = t.ItemName,
Description = t.ItemDescription
};
myDataGridView.DataSource = items.ToList();
问题是,当绑定到 DataGridView 时,我得到两列“名称”和“描述”。我想将它们重命名为“项目名称”和“项目描述”(示例)。
如果我将未绑定的列添加到 datagridview,它只会与我的列一起显示。我似乎无法创建数据绑定列。
Currently I am doing:
var items = from t in entity.Items
select new
{
Name = t.ItemName,
Description = t.ItemDescription
};
myDataGridView.DataSource = items.ToList();
The problem is that when bound to the DataGridView, I get two columns of "Name" and "Description". I want to rename these to "Item Name" and "Item Description" (example).
If I add an unbound Column to the datagridview, it just gets displayed along with my columns. I can not seem to create a databound column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你能发布网格的来源吗?
您需要
AutogenerateColumns="false"
手动添加列。要更改标题文本,您应该能够执行以下操作:
Can you post the grid's source?
You'll need
AutogenerateColumns="false"
to add columns manually.To change the header text, you should be able to do the following:
我发现了如何使用对象数据源的拖放将列直接绑定到 DataGridView,这允许我更改标题文本。
I found out how to use drag and drop of an object data source to bind the columns to a DataGridView directly, which allows me to change the header text.