Binding to DataGrid : DataBinding DataGrid « GUI Windows Forms « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » GUI Windows Forms » DataBinding DataGrid 
23.78.3.Binding to DataGrid
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

  public class Form1 : System.Windows.Forms.Form
  {
        private System.Windows.Forms.DataGrid dataGrid1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button button1;
    public Form1()
    {
            this.dataGrid1 = new System.Windows.Forms.DataGrid();
            this.label1 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
            this.SuspendLayout();
            // 
            // dataGrid1
            // 
            this.dataGrid1.DataMember = "";
            this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
            this.dataGrid1.Location = new System.Drawing.Point(856);
            this.dataGrid1.Name = "dataGrid1";
            this.dataGrid1.Size = new System.Drawing.Size(272168);
            this.dataGrid1.TabIndex = 0;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif"24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label1.Location = new System.Drawing.Point(88);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(28040);
            this.label1.TabIndex = 1;
            this.label1.Text = "Creating Datasets";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(88240);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(11223);
            this.button1.TabIndex = 2;
            this.button1.Text = "Create the dataset";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Form1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(513);
            this.ClientSize = new System.Drawing.Size(292273);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.dataGrid1);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
            this.ResumeLayout(false);

        }
    [STAThread]
    static void Main() 
    {
      Application.Run(new Form1());
    }

        private void button1_Click(object sender, System.EventArgs e)
        {
            DataTable table1;
            DataRow row1, row2, row3, row4;
            table1 = new DataTable("Customers");

            DataColumn firstName = new DataColumn("First Name");
            firstName.DataType = System.Type.GetType("System.String");
            table1.Columns.Add(firstName);

            DataColumn lastName = new DataColumn("Last Name");
            lastName.DataType = System.Type.GetType("System.String");
            table1.Columns.Add(lastName);

            DataColumn phone = new DataColumn("Phone");
            phone.DataType = System.Type.GetType("System.String");
            table1.Columns.Add(phone);

            DataColumn id = new DataColumn("ID");
            id.DataType = System.Type.GetType("System.Int32");
            table1.Columns.Add(id);

            row1 = table1.NewRow();

            row1["First Name""A";
            row1["Last Name""B";
            row1["Phone""(555) 333-4444";
            row1["ID"1;

            table1.Rows.Add(row1);

            row2 = table1.NewRow();

            row2["First Name""B";
            row2["Last Name""C";
            row2["Phone""(555) 333-4445";
            row2["ID"2;

            table1.Rows.Add(row2);

            row3 = table1.NewRow();

            row3["First Name""E";
            row3["Last Name""R";
            row3["Phone""(555) 333-4445";
            row3["ID"3;

            table1.Rows.Add(row3);

            row4 = table1.NewRow();

            row4["First Name""W";
            row4["Last Name""K";
            row4["Phone""(555) 333-4447";
            row4["ID"4;

            table1.Rows.Add(row4);

            DataSet dataset1 = new DataSet();
            dataset1.Tables.Add(table1);
            dataGrid1.SetDataBinding(dataset1, "Customers");
        }
  }
23.78.DataBinding DataGrid
23.78.1.Data binding to a programatically created dataset to a DataGridData binding to a programatically created dataset to a DataGrid
23.78.2.Table Create/Row DeleteTable Create/Row Delete
23.78.3.Binding to DataGrid
23.78.4.DataReader Binding
23.78.5.Using a BindingSource to bind a list to a DataGridView control.
23.78.6.Data Binding DataGrid
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.