DataView 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataView 클래스의 새 인스턴스를 초기화합니다.
오버로드
DataView() |
DataView 클래스의 새 인스턴스를 초기화합니다. |
DataView(DataTable) | |
DataView(DataTable, String, String, DataViewRowState) |
지정된 DataView , DataTable, RowFilter및 Sort를 사용하여 DataViewRowState클래스의 새 인스턴스를 초기화합니다. |
DataView()
- Source:
- DataView.cs
- Source:
- DataView.cs
- Source:
- DataView.cs
DataView 클래스의 새 인스턴스를 초기화합니다.
public:
DataView();
public DataView ();
Public Sub New ()
예제
다음 예제에서는 새 DataView를 만듭니다.
private void MakeDataView()
{
DataView view = new DataView();
view.Table = DataSet1.Tables["Suppliers"];
view.AllowDelete = true;
view.AllowEdit = true;
view.AllowNew = true;
view.RowFilter = "City = 'Berlin'";
view.RowStateFilter = DataViewRowState.ModifiedCurrent;
view.Sort = "CompanyName DESC";
// Simple-bind to a TextBox control
Text1.DataBindings.Add("Text", view, "CompanyName");
}
Private Sub MakeDataView()
Dim view As New DataView()
view.Table = DataSet1.Tables("Suppliers")
view.AllowDelete = True
view.AllowEdit = True
view.AllowNew = True
view.RowFilter = "City = 'Berlin'"
view.RowStateFilter = DataViewRowState.ModifiedCurrent
view.Sort = "CompanyName DESC"
' Simple-bind to a TextBox control
Text1.DataBindings.Add("Text", view, "CompanyName")
End Sub
추가 정보
적용 대상
DataView(DataTable)
- Source:
- DataView.cs
- Source:
- DataView.cs
- Source:
- DataView.cs
public:
DataView(System::Data::DataTable ^ table);
public DataView (System.Data.DataTable? table);
public DataView (System.Data.DataTable table);
new System.Data.DataView : System.Data.DataTable -> System.Data.DataView
Public Sub New (table As DataTable)
매개 변수
예제
다음 예제에서는 지정된 DataTable를 사용하여 새 DataView 를 만듭니다.
private void MakeDataView()
{
DataView view = new DataView(DataSet1.Tables["Suppliers"]);
// Bind a ComboBox control to the DataView.
Combo1.DataSource = view;
Combo1.DisplayMember = "Suppliers.CompanyName";
}
Private Sub MakeDataView()
Dim view As DataView
view = New DataView(DataSet1.Tables("Suppliers"))
' Bind a ComboBox control to the DataView.
Combo1.DataSource = view
Combo1.DisplayMember = "Suppliers.CompanyName"
End Sub
추가 정보
적용 대상
DataView(DataTable, String, String, DataViewRowState)
- Source:
- DataView.cs
- Source:
- DataView.cs
- Source:
- DataView.cs
지정된 DataView , DataTable, RowFilter및 Sort를 사용하여 DataViewRowState클래스의 새 인스턴스를 초기화합니다.
public:
DataView(System::Data::DataTable ^ table, System::String ^ RowFilter, System::String ^ Sort, System::Data::DataViewRowState RowState);
public DataView (System.Data.DataTable table, string? RowFilter, string? Sort, System.Data.DataViewRowState RowState);
public DataView (System.Data.DataTable table, string RowFilter, string Sort, System.Data.DataViewRowState RowState);
new System.Data.DataView : System.Data.DataTable * string * string * System.Data.DataViewRowState -> System.Data.DataView
Public Sub New (table As DataTable, RowFilter As String, Sort As String, RowState As DataViewRowState)
매개 변수
- RowState
- DataViewRowState
DataViewRowState 에 적용할 DataView입니다.
예제
다음 예제에서는 지정된 DataTable를 사용하여 새 DataView 를 만듭니다.
private void MakeDataView(DataSet dataSet)
{
DataView view = new DataView(dataSet.Tables["Suppliers"],
"Country = 'UK'", "CompanyName",
DataViewRowState.CurrentRows);
view.AllowEdit = true;
view.AllowNew = true;
view.AllowDelete = true;
}
Private Sub MakeDataView(ByVal dataSet As DataSet)
Dim view As New DataView(dataSet.Tables("Suppliers"), _
"Country = 'UK'", "CompanyName", _
DataViewRowState.CurrentRows)
view.AllowEdit = True
view.AllowNew = True
view.AllowDelete = True
End Sub
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET