如何将实体模型绑定到具有特定列名称的WinForms DataGridView?

发布于 2024-09-05 22:26:16 字数 351 浏览 4 评论 0原文

目前我正在做:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦忆晨望 2024-09-12 22:26:16

你能发布网格的来源吗?

您需要 AutogenerateColumns="false" 手动添加列。

要更改标题文本,您应该能够执行以下操作:

 <Columns>
   <asp:BoundField DataField="Name" HeaderText="Item Name" ReadOnly="True" />
 // .. etc

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:

 <Columns>
   <asp:BoundField DataField="Name" HeaderText="Item Name" ReadOnly="True" />
 // .. etc
萤火眠眠 2024-09-12 22:26:16

我发现了如何使用对象数据源的拖放将列直接绑定到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文