DataGridTextBox.SetDataGrid(DataGrid) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
public:
void SetDataGrid(System::Windows::Forms::DataGrid ^ parentGrid);
public void SetDataGrid (System.Windows.Forms.DataGrid parentGrid);
member this.SetDataGrid : System.Windows.Forms.DataGrid -> unit
Public Sub SetDataGrid (parentGrid As DataGrid)
매개 변수
예제
다음 코드 예제에서는이 멤버를 사용 하는 방법을 보여 줍니다.
// Create a DataSet with a table and populate it.
private:
void MakeDataSet()
{
myDataSet = gcnew DataSet( "myDataSet" );
DataTable^ tPer = gcnew DataTable( "Person" );
DataColumn^ cPerName = gcnew DataColumn( "PersonName" );
tPer->Columns->Add( cPerName );
myDataSet->Tables->Add( tPer );
DataRow^ newRow1;
for ( int i = 1; i < 6; i++ )
{
newRow1 = tPer->NewRow();
tPer->Rows->Add( newRow1 );
}
tPer->Rows[ 0 ][ "PersonName" ] = "Robert";
tPer->Rows[ 1 ][ "PersonName" ] = "Michael";
tPer->Rows[ 2 ][ "PersonName" ] = "John";
tPer->Rows[ 3 ][ "PersonName" ] = "Walter";
tPer->Rows[ 4 ][ "PersonName" ] = "Simon";
// Bind the 'DataSet' to the 'DataGrid'.
myDataGrid->SetDataBinding( myDataSet, "Person" );
myDataGridTextBox->DataBindings->Add( "Text", myDataSet, "Person::PersonName" );
// Set the DataGrid to the DataGridTextBox.
myDataGridTextBox->SetDataGrid( myDataGrid );
}
// Create a DataSet with a table and populate it.
private void MakeDataSet()
{
myDataSet = new DataSet("myDataSet");
DataTable tPer = new DataTable("Person");
DataColumn cPerName = new DataColumn("PersonName");
tPer.Columns.Add(cPerName);
myDataSet.Tables.Add(tPer);
DataRow newRow1;
for(int i = 1; i < 6; i++)
{
newRow1 = tPer.NewRow();
tPer.Rows.Add(newRow1);
}
tPer.Rows[0]["PersonName"] = "Robert";
tPer.Rows[1]["PersonName"] = "Michael";
tPer.Rows[2]["PersonName"] = "John";
tPer.Rows[3]["PersonName"] = "Walter";
tPer.Rows[4]["PersonName"] = "Simon";
// Bind the 'DataSet' to the 'DataGrid'.
myDataGrid.SetDataBinding(myDataSet, "Person");
myDataGridTextBox.DataBindings.Add("Text",myDataSet,"Person.PersonName");
// Set the DataGrid to the DataGridTextBox.
myDataGridTextBox.SetDataGrid(myDataGrid);
}
' Create a DataSet with a table and populate it.
Private Sub MakeDataSet()
myDataSet = New DataSet("myDataSet")
Dim tPer As New DataTable("Person")
Dim cPerName As New DataColumn("PersonName")
tPer.Columns.Add(cPerName)
myDataSet.Tables.Add(tPer)
Dim newRow1 As DataRow
Dim i As Integer
For i = 1 To 5
newRow1 = tPer.NewRow()
tPer.Rows.Add(newRow1)
Next i
tPer.Rows(0)("PersonName") = "Robert"
tPer.Rows(1)("PersonName") = "Michael"
tPer.Rows(2)("PersonName") = "John"
tPer.Rows(3)("PersonName") = "Walter"
tPer.Rows(4)("PersonName") = "Simon"
' Bind the 'DataSet' to the 'DataGrid'.
myDataGrid.SetDataBinding(myDataSet, "Person")
myDataGridTextBox.DataBindings.Add("Text", myDataSet, "Person.PersonName")
' Set the DataGrid to the DataGridTextBox.
myDataGridTextBox.SetDataGrid(myDataGrid)
End Sub