İzlenecek yol: İki Windows Forms DataGridView Denetimi Kullanarak Ana/Ayrıntı Formu Oluşturma
Denetimi kullanmanın en yaygın senaryolarından biri, iki veritabanı tablosu arasındaki üst/alt ilişkinin görüntülendiğinde DataGridView ana/ayrıntı formudur. Ana tablodaki satırları seçmek ayrıntı tablosuna karşılık gelen alt verilerle güncelleştirmeye neden olur.
Ana/ayrıntı formu uygulamak, denetim ve bileşen arasındaki etkileşimi DataGridView kullanarak BindingSource kolaydır. Bu kılavuzda, formu iki denetim ve iki bileşen DataGridView kullanarak derlemek BindingSource için kullanılır. Form, Northwind veritabanı örnek veritabanında iki ilişkili SQL Server gösterir: Customers ve Orders . Bitirdikten sonra ana veritabanındaki tüm müşterileri ve seçilen müşteriye verilen tüm siparişleri ayrıntılı olarak gösteren DataGridView bir form DataGridView alırsınız.
Bu konudaki kodu tek bir liste olarak kopyalamak için bkz. How to: Create a Master/Detail Form Using Two Windows Forms DataGridView Controls.
Önkoşullar
Bu izlenecek yolu tamamlamak için aşağıdakiler gerekir:
- Northwind veritabanına sahip bir sunucuya erişim SQL Server gerekir.
Formu oluşturma
Ana/ayrıntı formu oluşturmak için
'den türeten ve iki Form denetim ve iki bileşen içeren bir sınıf DataGridView BindingSource oluşturun. Aşağıdaki kod, temel form başlatma sağlar ve bir yöntemi
Mainiçerir. Formlarınızı oluşturmak için Visual Studio tasarımcısını kullanırsanız, bu kod yerine tasarımcı tarafından oluşturulan kodu kullanabilirsiniz, ancak buradaki değişken bildirimlerde gösterilen adları kullanmaya emin olun.using System; using System.Data; using System.Data.SqlClient; using System.Windows.Forms; public class Form1 : System.Windows.Forms.Form { private DataGridView masterDataGridView = new DataGridView(); private BindingSource masterBindingSource = new BindingSource(); private DataGridView detailsDataGridView = new DataGridView(); private BindingSource detailsBindingSource = new BindingSource(); [STAThreadAttribute()] public static void Main() { Application.Run(new Form1()); } // Initializes the form. public Form1() { masterDataGridView.Dock = DockStyle.Fill; detailsDataGridView.Dock = DockStyle.Fill; SplitContainer splitContainer1 = new SplitContainer(); splitContainer1.Dock = DockStyle.Fill; splitContainer1.Orientation = Orientation.Horizontal; splitContainer1.Panel1.Controls.Add(masterDataGridView); splitContainer1.Panel2.Controls.Add(detailsDataGridView); this.Controls.Add(splitContainer1); this.Load += new System.EventHandler(Form1_Load); this.Text = "DataGridView master/detail demo"; }Imports System.Data Imports System.Data.SqlClient Imports System.Windows.Forms Public Class Form1 Inherits System.Windows.Forms.Form Private masterDataGridView As New DataGridView() Private masterBindingSource As New BindingSource() Private detailsDataGridView As New DataGridView() Private detailsBindingSource As New BindingSource() <STAThreadAttribute()> _ Public Shared Sub Main() Application.Run(New Form1()) End Sub ' Initializes the form. Public Sub New() masterDataGridView.Dock = DockStyle.Fill detailsDataGridView.Dock = DockStyle.Fill Dim splitContainer1 As New SplitContainer() splitContainer1.Dock = DockStyle.Fill splitContainer1.Orientation = Orientation.Horizontal splitContainer1.Panel1.Controls.Add(masterDataGridView) splitContainer1.Panel2.Controls.Add(detailsDataGridView) Me.Controls.Add(splitContainer1) Me.Text = "DataGridView master/detail demo" End Sub}End ClassVeritabanına bağlanmanın ayrıntısı için form sınıf tanımında bir yöntem uygulama. Bu örnek,
GetDatabir nesneyi doldurmak, veri kümesine bir nesne ekleyen ve bileşenleri bağlayan DataSet bir yöntem DataRelation BindingSource kullanır. değişkenini veritabanınızconnectionStringiçin uygun bir değere ayarlayasınız.Önemli
Bağlantı dizesi içinde parola gibi hassas bilgilerin depolanması, uygulamanın güvenliğini etkileyebilir. Windows Kimlik Doğrulaması (tümleşik güvenlik olarak da bilinir) kullanılarak bir veritabanına erişimi denetlemek için daha güvenli bir yoldur. Daha fazla bilgi için bkz. Bağlantı Bilgilerini Koruma.
private void GetData() { try { // Specify a connection string. Replace the given value with a // valid connection string for a Northwind SQL Server sample // database accessible to your system. String connectionString = "Integrated Security=SSPI;Persist Security Info=False;" + "Initial Catalog=Northwind;Data Source=localhost"; SqlConnection connection = new SqlConnection(connectionString); // Create a DataSet. DataSet data = new DataSet(); data.Locale = System.Globalization.CultureInfo.InvariantCulture; // Add data from the Customers table to the DataSet. SqlDataAdapter masterDataAdapter = new SqlDataAdapter("select * from Customers", connection); masterDataAdapter.Fill(data, "Customers"); // Add data from the Orders table to the DataSet. SqlDataAdapter detailsDataAdapter = new SqlDataAdapter("select * from Orders", connection); detailsDataAdapter.Fill(data, "Orders"); // Establish a relationship between the two tables. DataRelation relation = new DataRelation("CustomersOrders", data.Tables["Customers"].Columns["CustomerID"], data.Tables["Orders"].Columns["CustomerID"]); data.Relations.Add(relation); // Bind the master data connector to the Customers table. masterBindingSource.DataSource = data; masterBindingSource.DataMember = "Customers"; // Bind the details data connector to the master data connector, // using the DataRelation name to filter the information in the // details table based on the current row in the master table. detailsBindingSource.DataSource = masterBindingSource; detailsBindingSource.DataMember = "CustomersOrders"; } catch (SqlException) { MessageBox.Show("To run this example, replace the value of the " + "connectionString variable with a connection string that is " + "valid for your system."); } }Private Sub GetData() Try ' Specify a connection string. Replace the given value with a ' valid connection string for a Northwind SQL Server sample ' database accessible to your system. Dim connectionString As String = _ "Integrated Security=SSPI;Persist Security Info=False;" & _ "Initial Catalog=Northwind;Data Source=localhost" Dim connection As New SqlConnection(connectionString) ' Create a DataSet. Dim data As New DataSet() data.Locale = System.Globalization.CultureInfo.InvariantCulture ' Add data from the Customers table to the DataSet. Dim masterDataAdapter As _ New SqlDataAdapter("select * from Customers", connection) masterDataAdapter.Fill(data, "Customers") ' Add data from the Orders table to the DataSet. Dim detailsDataAdapter As _ New SqlDataAdapter("select * from Orders", connection) detailsDataAdapter.Fill(data, "Orders") ' Establish a relationship between the two tables. Dim relation As New DataRelation("CustomersOrders", _ data.Tables("Customers").Columns("CustomerID"), _ data.Tables("Orders").Columns("CustomerID")) data.Relations.Add(relation) ' Bind the master data connector to the Customers table. masterBindingSource.DataSource = data masterBindingSource.DataMember = "Customers" ' Bind the details data connector to the master data connector, ' using the DataRelation name to filter the information in the ' details table based on the current row in the master table. detailsBindingSource.DataSource = masterBindingSource detailsBindingSource.DataMember = "CustomersOrders" Catch ex As SqlException MessageBox.Show("To run this example, replace the value of the " & _ "connectionString variable with a connection string that is " & _ "valid for your system.") End Try End SubForm etkinliği için denetimleri bileşenlere Load bağlayan ve DataGridView yöntemini çağıran bir BindingSource işleyici
GetDatauygulama. Aşağıdaki örnek, sütunları görüntülenen verilere uyacak DataGridView şekilde yeniden boyutlandıran kodu içerir.private void Form1_Load(object sender, System.EventArgs e) { // Bind the DataGridView controls to the BindingSource // components and load the data from the database. masterDataGridView.DataSource = masterBindingSource; detailsDataGridView.DataSource = detailsBindingSource; GetData(); // Resize the master DataGridView columns to fit the newly loaded data. masterDataGridView.AutoResizeColumns(); // Configure the details DataGridView so that its columns automatically // adjust their widths when the data changes. detailsDataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells; }Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) _ Handles Me.Load ' Bind the DataGridView controls to the BindingSource ' components and load the data from the database. masterDataGridView.DataSource = masterBindingSource detailsDataGridView.DataSource = detailsBindingSource GetData() ' Resize the master DataGridView columns to fit the newly loaded data. masterDataGridView.AutoResizeColumns() ' Configure the details DataGridView so that its columns automatically ' adjust their widths when the data changes. detailsDataGridView.AutoSizeColumnsMode = _ DataGridViewAutoSizeColumnsMode.AllCells End Sub
Uygulamayı Test Etme
Artık formu test etmek için beklendiği gibi davranarak emin olun.
Formu test etmek için
Uygulamayı derle ve çalıştır.
Biri diğeri üzerinde DataGridView olmak üzere iki denetim görebilirsiniz. En üstte Northwind tablosundan müşteriler, altta
Customersise seçili müşteriye karşılık gelen müşteriler yerOrdersalır. Üst kısımdaki farklı satırları seçerek DataGridView alt satırın içeriği DataGridView de buna göre değişir.
Sonraki Adımlar
Bu uygulama, denetimin özellikleri hakkında DataGridView temel bir anlayış sağlar. Denetimin görünümünü ve davranışını çeşitli DataGridView yollarla özelleştirebilirsiniz:
Kenarlık ve üst bilgi stillerini değiştirme. Daha fazla bilgi için, bkz. How to: Change the Border and Gridline Styles in the Windows Forms DataGridView Control.
Denetime kullanıcı girişini etkinleştirin veya DataGridView kısıtlar. Daha fazla bilgi için bkz. Windows Forms DataGridViewDenetiminde Satır Ekleme ve Silmeyi Engelleme ve Nasıl kullanılır: Windows Forms DataGridViewDenetiminde Sütunları Read-Only Yapma.
Denetime kullanıcı girişini DataGridView doğrulama. Daha fazla bilgi için bkz. Walkthrough: Validating Data Windows Forms DataGridView Control.
Sanal modu kullanarak çok büyük veri kümelerini işleme. Daha fazla bilgi için, bkz. Walkthrough: Implementing Virtual Mode in the Windows Forms DataGridView Control.
Hücrelerin görünümünü özelleştirme. Daha fazla bilgi için, bkz. How to: Customize the Appearance of Cells in the Windows Forms DataGridView Control ve How to: Set Default Cell Styles for the Windows Forms DataGridView Control.