SUMMARY
This step-by-step article describes how to bind an
ArrayList of structures to a Windows form. The example consists of a Windows form with three text boxes to display the structure members, and four command buttons to browse the
ArrayList.
back to the top
Requirements
The following items describe the recommended hardware, software, network
infrastructure, skills, knowledge, and service packs that you need:
- Microsoft Visual C# .NET or Microsoft Visual C# 2005
- An intermediate understanding of C# programming concepts
back to the top
Design the Structure
A structure that is to be bound to a form must have member accessors. Structure member accessors are virtually identical to the
PROPERTY SET and
PROPERTY GET structures that are found in a class. The structure that is used for the example in this article has three members (only one is shown). A parameterized constructor has also been provided, but is not a requirement.
public struct Guitar
{
private string make;
private string model;
private short year;
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 Structure Instances to an ArrayList
To create instances and add them to the
ArrayList, follow these steps:
- Declare a variable of the type of the structure.
- Declare an ArrayList of the type of the structure.
- Create instances of the structure and add them to the ArrayList.
private ArrayList al = new ArrayList();
al.Add(new Guitar("Gibson", "Les Paul", 1958));
al.Add(new Guitar("Fender", "Jazz Bass", 1964));
al.Add(new Guitar("Guild", "Bluesbird", 1971));
back to the top
Bind the Structure Members to Form Controls
After the
ArrayList has been populated, you can bind the individual properties of the object to Windows Forms controls. To do this, follow these steps:
- Call the Add method of the Textbox DataBindings property.
- Pass the control property that is to be bound, the name of the ArrayList, and the property of the object.
textBox1.DataBindings.Add("Text", al, "Make");
textBox2.DataBindings.Add("Text", al, "Model");
textBox3.DataBindings.Add("Text", al, "Year");
back to the top
Provide a Means to Browse the ArrayList
You can use a
CurrencyManager to browse through the
ArrayList. To do this, associate the
CurrencyManager with the
BindingContext of the form (in this case, the
ArrayList of structures).
private CurrencyManager currencyManger = null;
currencyManger = (CurrencyManager)this.BindingContext[al];
The
CurrencyManager class has a
Position property that you can manipulate to iterate over the members of the
ArrayList. By adding to, or subtracting from, the current value of
Position, you can display different members of the
ArrayList on the form.
//Move forward one element.
currencyManager.Position++;
//Move back one element.
currencyManager.Position--;
//Move to the beginning.
currencyManger.Position = 0;
//Move to the end.
currencyManger.Position = al.Count - 1;
back to the top
Step-by-Step Example
- In Visual C# .NET or in Visual C# 2005, create a new Windows Application project. Form1 is created by default.
- Add three text boxes to Form1 and arrange the controls horizontally.
- Add four buttons to Form1 and arrange the controls horizontally.
- Change the Text property of Button1 to Next.
- Change the Text property of Button2 to Previous.
- Change the Text property of Button3 to First.
- Change the Text property of Button4 to Last.
- Add the following code to the Form1 class:
public struct Guitar
{
private string make;
private string model;
private short year;
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;
}
}
}
private ArrayList al=new ArrayList();
private CurrencyManager currencyManger = null;
- Add the following code to the constructor of the form after the InitializeComponent call (where the code designer has inserted the "TODO: Add any constructor code after InitializeComponent call" comment):
al.Add(new Guitar("Gibson", "Les Paul", 1958));
al.Add(new Guitar("Fender", "Jazz Bass", 1964));
al.Add(new Guitar("Guild", "Bluesbird", 1971));
currencyManger = (CurrencyManager)this.BindingContext[al];
textBox1.DataBindings.Add("Text", al, "make");
textBox2.DataBindings.Add("Text", al, "model");
textBox3.DataBindings.Add("Text", al, "year");
- Switch to view the Forms Designer.
- Double-click Next and add the following code to the button1_Click event:
currencyManger.Position++;
- Double-click Previous and add the following code to the button2_Click event:
currencyManger.Position--;
- Double-click First and add the following code to the button3_Click event:
currencyManger.Position = 0;
- Double-click Last and add the following code to the button4_Click event:
currencyManger.Position = al.Count - 1;
- Build and run the project.
- Click the command buttons to display different ArrayList elements. Note that you can edit the values of the objects if desired.
back to the top