3

我知道这是一个已经被回答了一千次的基本问题,但我无法让它发挥作用。

我在 Visual Studio 2010 中工作,并且在我的 Windows 应用程序中有两个表单。在第一个(Main.vb)中,用户输入他的输入并进行计算。在第二个(DataAnalysis.vb)中显示计算结果。

在 Main.vb 中,我创建了包含所有中间计算步骤的临时表:

Dim tableTempJDL As DataTable = New DataTable("TempJDL")
Dim column As DataColumn

column = New DataColumn("ID", GetType(System.Int32))
tableTempJDL.Columns.Add(column)

column = New DataColumn("PthObjekt", GetType(System.Double))
tableTempJDL.Columns.Add(column)

'further columns are after created using the same method

然后,在 DataAnalysis.vb 中,我尝试将 DataTable 显示tableTempJDLDataGridViewBerechnung

Public bindingSourceBerechnung As New BindingSource()
Me.DataGridViewBerechnung.DataSource = Me.bindingSourceBerechnung

但是后来我不明白如何填充 DataGridView ...

4

1 回答 1

3

简单地说,您可以通过以下方式将您的表作为 bindingsource 的数据源:

 Me.bindingSourceBerechnung .DataSource = tableTempJDL

稍后,您可以通过以下方式在 datagridview 中绑定以上绑定源:

 Me.DataGridViewBerechnung.DataSource = Me.bindingSourceBerechnung 
于 2012-08-27T12:07:37.370 回答