How to bind a DataGrid control to an array of objects or of structures by using Visual C# (315786)



The information in this article applies to:

  • Microsoft Visual C# 2005, Express Edition
  • Microsoft Visual C# .NET (2002)

This article was previously published under Q315786

SUMMARY

This step-by-step article describes how to bind an array of objects to a DataGrid control. The example consists of a Windows form with a DataGrid control to display object property values and four command buttons to browse the rows of the DataGrid control.

back to the top

Requirements

The following list outlines the recommended hardware, software, network infrastructure, and service packs that are required:
  • Visual C# .NET or Visual C# 2005
This article assumes that you are familiar with the following topics:
  • Visual C# programming concepts
back to the top

Design the class

A class that is to be bound to a control must have property accessors. Any property that is to be bound must have the Property Set method and the Property Get method. The sample class that is used in this article has three members. Only one member is described in this article. A parameterized constructor has also been provided. However, this is not a requirement.
public class guitar
{
    private string make;
    private string model;
    private short year;
    
    public guitar()
    {
    }

    public guitar(string make, string model, short year)
    {
        Make=make;
        Model=model;
        Year=year;
    }

    public string Make 
    {
	get 
	{ 
            return make; 
	}
	set 
	{
            make = value; 
	}


}
back to the top

Add class instances to an array

To create instances and add them to the array, follow these steps:
  1. Declare an array.
  2. Create instances of the class, and then add the instances to the array.
private guitar[] arr=new guitar[3];

   arr[0] = new guitar("Gibson", "Les Paul", 1958);
   arr[1] = new guitar("Fender", "Jazz Bass", 1964);
   arr[2] = new guitar("Guild", "Bluesbird", 1971);
				
back to the top

Bind the array to the DataGrid control

After the array has been populated, set the DataSource property of the DataGrid control to the array. The columns in the DataGrid control are populated based on the properties for which in-scope property accessors exist.
dataGrid1.DataSource=arr;
				
back to the top

Provide a means to browse the array

You can use CurrencyManager to browse through the array. To do this, associate CurrencyManager with the BindingContext of the control, in this case, the array.
private CurrencyManager currencyManager=null;

currencyManager = (CurrencyManager)dataGrid1.BindingContext[arr];
				
The CurrencyManager class has a Position property that you can manipulate to iterate over the members of the array. By adding to, or subtracting from, the current value of Position, you can browse the rows of the DataGrid control.
//Move forward one element.
currencyManager.Position++;
//Move back one element.
currencyManager.Position--;
//Move to the beginning.
currencyManager.Position = 0;
//Move to the end.
currencyManager.Position = arr.Length - 1;
				
back to the top

Step-by-step example

  1. In Visual C# .NET or Visual C# 2005, create a new Windows Application project. Form1 is created by default.
  2. Add a class to the project.
  3. Replace the code in Class1.cs with the following.
    public class guitar
    {
    	private string make;
    	private string model;
    	private short year;
    	
    	public guitar()
    	{
    	}
    
    	public guitar(string Make, string Model, short Year)
    	{
    	    make=Make;
    	    model=Model;
    	    year=Year;
    	}
    
    	public string Make 
    	{
    		get 
    		{ 
    			return make; 
    		}
    		set 
    		{
    			make = value; 
    		}
    	}
    	
    	public string Model 
    	{
    		get 
    		{ 
    			return model; 
    		}
    		set 
    		{
    			model = value; 
    		}
    	}
    
    	public short Year 
    	{
    		get 
    		{ 
    			return year; 
    		}
    		set 
    		{
    			year = value; 
    		}
    	}
    }
    					
  4. Close the Class1.cs code window, and then switch to the Form Designer.
  5. Add a DataGrid control to Form1. Size the DataGrid control to accommodate four columns and three rows.
  6. Add four Button controls to Form1, and then arrange the buttons horizontally.
  7. Change the Text property of Button1 to Next.
  8. Change the Text property of Button2 to Previous.
  9. Change the Text property of Button3 to First.
  10. Change the Text property of Button4 to Last.
  11. Add the following code to the Form1 class.
    private guitar[] arr=new guitar[3];	
    private CurrencyManager currencyManager=null;	
    					
  12. Switch to the Form Designer, right-click the form, and then click Properties.
  13. Click the Events icon, and then double-click the Load event to add the Form1_Load event to your code.
  14. Add the following code to the Form1_Load event.
    arr[0] = new guitar("Gibson", "Les Paul", 1958);
    arr[1] = new guitar("Fender", "Jazz Bass", 1964);
    arr[2] = new guitar("Guild", "Bluesbird", 1971);
    				
    currencyManager = (CurrencyManager)dataGrid1.BindingContext[arr];
    	
    dataGrid1.DataSource=arr;
    					
  15. Switch to view the Form Designer.
  16. Double-click Next, and then add the following code to the button1_Click event.
    currencyManager.Position++;
    					
  17. Double-click Previous, and then add the following code to the button2_Click event.
    currencyManager.Position--;
    					
  18. Double-click First, and then add the following code to the button3_Click event.
    currencyManager.Position = 0;
    					
  19. Double-click Last, and then add the following code to the button4_Click event.
    currencyManager.Position = arr.Length - 1;
    					
  20. Build and run the project.
  21. Click the command buttons to move among the rows of the DataGrid control. Note that you can edit the values of the objects if desired.

    Note The code should be changed in Visual Studio 2005. When you create a Windows Forms project, Visual C# adds one form to the project by default. This form is named Form1. The two files that represent the form are called Form1.cs and Form1.designer.cs. You write your code in Form1.cs. The designer.cs file is where the Windows Forms Designer writes the code that implements all the actions that you performed by dragging and dropping controls from the Toolbox. For more information about the Windows Forms Designer in Visual C# 2005, visit the following Microsoft Web site:
back to the top

Use a structure instead of a class

The rules for binding a structure are the same as the rules for binding an object. Property that is member accessors is required. A structure that is created for this purpose resembles a class.

To bind to an array of structures, follow these steps.
  1. Change the definition of the Class1.cs class module in the example from
    public class guitar
    					
    to the following:
    public struct guitar
    					
  2. Comment out the default constructor, as follows.
    //public guitar()
    //{
    //}
    					
  3. Build and run the example program again and verify that it functions with an array of structures.
back to the top

REFERENCES

For more information, see the "Consumers of Data on Windows Forms" topic in the Visual Studio .NET Online Help.

back to the top

Modification Type:MajorLast Reviewed:1/19/2006
Keywords:kbHOWTOmaster KB315786 kbAudDeveloper