I just started using the datagrid, someone want to take the time to explain this code?

thanks

VB Code:
  1. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  2.         Dim tb As New DataTable("testTBL")
  3.         Dim clm As New DataColumn("testCLM", GetType(String))
  4.         tb.Columns.Add(clm)
  5.         Dim tbs As New DataGridTableStyle()
  6.         Dim dgc As New dgcell()
  7.         dgc.MappingName = "testCLM"
  8.         tbs.MappingName = "testTBL"
  9.         tbs.GridColumnStyles.Add(dgc)
  10.         DataGrid1.TableStyles.Add(tbs)
  11.         DataGrid1.DataSource = tb
  12.  
  13.     End Sub