ystem.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace ButtonArrayProject
{
public class Form1 : System.Windows.Forms.Form{
private ButtonArray btnArray ;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnRemove;
private System.ComponentModel.Container components = null;
public Form1(){
InitializeComponent();
this.btnArray = new ButtonArray(this);
}
protected override void Dispose( bool disposing ){
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows
private void InitializeComponent() {
&n