次の方法で共有


DataGrid.DataSource プロパティ

グリッドでデータが表示される対象のデータ ソースを取得または設定します。

Public Property DataSource As Object
[C#]
public object DataSource {get; set;}
[C++]
public: __property Object* get_DataSource();public: __property void set_DataSource(Object*);
[JScript]
public function get DataSource() : Object;public function set DataSource(Object);

プロパティ値

データ ソースとして機能するオブジェクト。

解説

実行時に DataSource プロパティと DataMember プロパティを設定するには、 SetDataBinding メソッドを使用します。

有効なデータ ソースを次に示します。

データ ソースの詳細については、 Binding クラス概要のトピックを参照してください。

DataSource 参照が複数のテーブルを格納している場合は、 DataMember プロパティにバインド先のテーブルを指定する文字列を設定する必要があります。たとえば、 DataSourceDataSet または DataViewManager であり、Customers、Orders、および OrderDetails という名前の 3 つのテーブルを格納している場合は、バインド先のテーブルを指定する必要があります。

IList インターフェイスを実装していないオブジェクト、または IListSourceDataSource を設定すると、グリッドによって例外がスローされます。

作成したグリッドで、ユーザーはデータを編集できるが、新しい行を追加できないようにするには、 DataView をデータ ソースとして使用し、 AddNew プロパティを false に設定します。

DataGrid をオブジェクトの厳密に型指定された配列にバインドするには、オブジェクトにパブリック プロパティが含まれている必要があります。このような配列を表示する DataGridTableStyle を作成するには、 MappingName プロパティを classname[] に設定します。なお、この classname は実際のクラス名で置き換えてください。また、 MappingName プロパティでは大文字と小文字が区別されます。例については、 MappingName プロパティのトピックを参照してください。

また、 DataGridArrayList にバインドできます。 ArrayList の特長は、複数の型のオブジェクトを格納できることです。ただし、 DataGrid はリスト内のすべての項目の型が 1 番目の項目の型と同じ場合に限り、リストにバインドできます。つまり、すべてのオブジェクトの型が同じであるか、リスト内の最初の項目と同じクラスからすべてのクラスが継承している必要があります。たとえば、リスト内の最初の項目が Control の場合、2 番目の項目は (Control から継承した) TextBox にできます。逆に、1 番目の項目が TextBox の場合、2 番目のオブジェクトが Control になることはできません。さらに、 ArrayList は、バインディングするときは、項目を含んでいる必要があります。空の ArrayList の場合、空のグリッドとなります。 ArrayList にバインディングするときは、 DataGridTableStyleMappingName を "ArrayList" (型の名前) に設定します。

使用例

[Visual Basic, C#, C++] DataSource と、必要に応じて DataMember を設定して、 System.Windows.Forms.DataGridDataViewDataSet の両方にバインドする方法を次の例に示します。この例では、 System.Windows.Forms.DataGrid からデータ ソースを返す方法も示します。

 
Private Sub BindToDataView(myGrid As DataGrid)
    ' Create a DataView using the DataTable.
    Dim myTable As New DataTable("Suppliers")
    ' Insert code to create and populate columns.
    Dim myDatatView As New DataView(myTable)
    myGrid.DataSource = myDatatView
End Sub 'BindToDataView

Private Sub BindToDataSet(myGrid As DataGrid)
    ' Create a DataSet.
    Dim myDataSet As New DataSet("myDataSet")
    ' Insert code to populate DataSet with several tables.
    myGrid.DataSource = myDataSet
    ' Use the DataMember property to specify the DataTable.
    myGrid.DataMember = "Suppliers"
End Sub 'BindToDataSet

Private Function GetDataViewFromDataSource() As DataView
    ' Create a DataTable variable, and set it to the DataSource.
    Dim myDatatView As DataView
    myDatatView = CType(dataGrid1.DataSource, DataView)
    Return myDatatView
End Function 'GetDataViewFromDataSource

Private Function GetDataSetFromDataSource() As DataSet
    ' Create a DataSet variable, and set it to the DataSource.
    Dim myDataSet As DataSet
    myDataSet = CType(dataGrid1.DataSource, DataSet)
    Return myDataSet
End Function 'GetDataSetFromDataSource

[C#] 
private void BindToDataView(DataGrid myGrid){
    // Create a DataView using the DataTable.
    DataTable myTable = new DataTable("Suppliers");
    // Insert code to create and populate columns.
    DataView myDataView = new DataView(myTable);
    myGrid.DataSource = myDataView;
 }
 private void BindToDataSet(DataGrid myGrid){
    // Create a DataSet.
    DataSet myDataSet = new DataSet("myDataSet");
    // Insert code to populate DataSet with several tables.
    myGrid.DataSource = myDataSet;
    // Use the DataMember property to specify the DataTable.
    myGrid.DataMember = "Suppliers";
 }
 private DataView GetDataViewFromDataSource(){
    // Create a DataTable variable, and set it to the DataSource.
    DataView myDataView;
    myDataView = (DataView) dataGrid1.DataSource;
    return myDataView;
 }
 private DataSet GetDataSetFromDataSource(){
    // Create a DataSet variable, and set it to the DataSource.
    DataSet myDataSet;
    myDataSet = (DataSet) dataGrid1.DataSource;
    return myDataSet;
 }


[C++] 
private:
 void BindToDataView(DataGrid* myGrid){
    // Create a DataView using the DataTable.
    DataTable* myTable = new DataTable(S"Suppliers");
    // Insert code to create and populate columns.
    DataView* myDataView = new DataView(myTable);
    myGrid->DataSource = myDataView;
 }

 void BindToDataSet(DataGrid* myGrid){
    // Create a DataSet.
    DataSet* myDataSet = new DataSet(S"myDataSet");
    // Insert code to populate DataSet with several tables.
    myGrid->DataSource = myDataSet;
    // Use the DataMember property to specify the DataTable.
    myGrid->DataMember = S"Suppliers";
 }

 DataView* GetDataViewFromDataSource(){
    // Create a DataTable variable, and set it to the DataSource.
    DataView* myDataView;
    myDataView = dynamic_cast<DataView*> (dataGrid1->DataSource);
    return myDataView;
 }

 DataSet* GetDataSetFromDataSource(){
    // Create a DataSet variable, and set it to the DataSource.
    DataSet* myDataSet;
    myDataSet = dynamic_cast<DataSet*> (dataGrid1->DataSource);
    return myDataSet;
 }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

DataGrid クラス | DataGrid メンバ | System.Windows.Forms 名前空間 | DataMember | DataSet | DataViewManager | DataView