我正在使用vb.net winforms在网格中显示为csv文件。我使用实体框架将sql导入到规范化表中,然后在下面的查询中检索我的交付表obj。
Private Sub frmConfirmDeliverys_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Dim bs As New BindingSource
bs.DataSource = (From u In threeContext.dbContext.skechersDeliveries Where u.isprocessed = False Select New With {.OrderNumber = u.ordernumber, .BarCode = u.tagbarcode, .Qty = u.qty, .Location = u.location})
bs.ResetBindings(True)
dgDeliverys.DataSource = bs
dgDeliverys.BeginEdit(True)
答案 0 :(得分:0)
你能澄清一下你的问题吗?无论如何,如果您的问题是您无法更改数据源的datagridview列标题原因,则可以替换列标题
示例:
“SELECT ID_No AS [ID号码] 来自DBStudent”
代替显示ID_No,它将显示ID号