在一个datagridview中显示父数据表并在另一个数据表中显示子数据表元素?

问题描述:

嗨我已经创建了一个数据集和两个数据表。 URLData表通过关键字列被关联到KeywordData表。在一个datagridview中显示父数据表并在另一个数据表中显示子数据表元素?

'Create the primary object to hold both data tables 
    Dim AllKeyWordInfo As DataSet = New DataSet("AllKeywordInfo") 

    'Create a Datatable For keyword Data. Data Tables are stores In the Dataset 
    Dim KeywordData As DataTable = AllKeyWordInfo.Tables.Add("Keywords") 

    'Create a Datatable For URL Data. 
    Dim URLData As DataTable = AllKeyWordInfo.Tables.Add("URLMetrics") 

    'Add Columns to our Keyword datatable 
    KeywordData.Columns.Add("Keyword") 
    KeywordData.Columns.Add("SearchCount") 

    'Add Columns to URLDATA 
    URLData.Columns.Add("Keyword") 
    URLData.Columns.Add("URL") 
    URLData.Columns.Add("DA") 
    URLData.Columns.Add("PA") 

    'Creat a parent child relationship 
    AllKeyWordInfo.Relations.Add("ALLDATA", AllKeyWordInfo.Tables("Keywords").Columns("Keyword"), AllKeyWordInfo.Tables("URLMetrics").Columns("Keyword")) 

    'parent 
    KeywordData.Rows.Add("TESTEST", "1123829") 

    'children 
    URLData.Rows.Add("TESTEST", "288789") 
    URLData.Rows.Add("TESTEST", "asdsdsdd") 


    DataGridView1.DataSource = KeywordData 
    DataGridView2.DataSource = URLData 

我想要做的就是显示datagridview1中关键字数据表的所有内容。当用户单击任何行(在数据网格上启用了全行选择)时,我希望datagridview2显示该关键字的所有子行。每当用户切换datagridview1中的行时,它都会切换到datagridview2中的适当子行。这可能吗?

诀窍在于绑定。 Click here了完整的解决方案,这包括创建DataSet

这里的重要组成部分,考虑到你已经有包含两个DataTables一个DataSetDataRelation

'Bind the parent source to the parent table. 
Me.BindingSource1.DataSource = data 
Me.BindingSource1.DataMember = "Parent" 'This is the name of the parent DataTable. 

'Bind the child source to the relationship. 
Me.BindingSource2.DataSource = Me.BindingSource1 
Me.BindingSource2.DataMember = "ParentChild" 'This is the name of the DataRelation. 

'Bind the parent control to the parent source. 
Me.DataGridView1.DataSource = Me.BindingSource1 

'Bind the child control to the child source. 
Me.DataGridView2.DataSource = Me.BindingSource2 

在这种情况下,dataDataSet 。请注意,父BindingSource通过DataSet绑定到父DataTable,而子BindingSource通过父BindingSource绑定到DataRelation,而不是绑定到子DataTable

另请注意,我的原始示例绑定到ComboBox控件,但正如我在该线程中所说的,无论控件的类型如何,原理都是相同的。我编辑了上面的代码来代替使用DataGridView控件。

+0

完美的作品谢谢你! –