DataGrid Constructor ()
.NET Framework (current version)
Initializes a new instance of the System.Windows.Forms::DataGrid class.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
To populate a newly created System.Windows.Forms::DataGrid control, set the DataSource property to a valid source, such as a DataView, DataSet, or DataViewManager.
The following code example creates a new System.Windows.Forms::DataGrid and uses the SetDataBinding method to set the DataSource and DataMember properties.
' This object variable must go in the Declarations section: Private DataGrid1 As DataGrid Private Sub CreateDataGrid() ' Initialize a new DataGrid control. me.Datagrid1 = New DataGrid Dim myDataSet As DataSet = New DataSet("myDataSet") Dim myDataTable As DataTable = New DataTable("Customers") myDataSet.Tables.Add(myDataTable) ' Insert code to populate the DataTable with rows. ' Set the DataSource and DataMember of the DataGrid control. DataGrid1.SetDataBinding(myDataSet, "Customers") End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: