this.flyGrid1.Options = ((NineRays.Windows.Forms.Grids.GridOptions)((NineRays.Windows.Forms.Grids.GridOptions.RowSelect | NineRays.Windows.Forms.Grids.GridOptions.Default)));
this.flyGrid1.Size = new System.Drawing.Size(384, 280);
this.flyGrid1.TabIndex = 0;
this.flyGrid1.Text = \"flyGrid1\";
//
// column1
//
this.column1.Caption = \"Column0\";
//
// column2
//
this.column2.Caption = \"Column1\";
//
// column3
//
this.column3.Caption = \"Column2\";
//
// column4
//
this.column4.Caption = \"Column3\";
//
// column5
//
this.column5.Caption = \"Column4\";
//
// column6
//
this.column6.Caption = \"Column5\";
//
// column7
//
this.column7.Caption = \"Column6\";
//
// column8
//
this.column8.Caption = \"Column7\";
//
// column9
//
this.column9.Caption = \"Column8\";
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 337);
this.panel1.Name = \"panel1\";
this.panel1.Size = new System.Drawing.Size(616, 100);
this.panel1.TabIndex = 2;
//
// splitter1
//
this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.splitter1.Location = new System.Drawing.Point(0, 334);
this.splitter1.Name = \"splitter1\";
this.splitter1.Size = new System.Drawing.Size(616, 3);
this.splitter1.TabIndex = 3;
this.splitter1.TabStop = false;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(616, 437);
this.Controls.Add(this.splitter1);
this.Controls.Add(this.panel1);
this.Controls.Add(this.flyGrid1);
this.Name = \"Form1\";
this.Text = \"Form1\";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.flyGrid1)).EndInit();
this.ResumeLayout(false);
}
#endregion
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void Form1_Load(object sender, System.EventArgs e)
{
flyGrid1.Rows.Items.Add( new Node(new object[] { 1, \"Hello1\" } ));
flyGrid1.Rows.Items.Add( new Node(new object[] { 2, \"Hello2\" } ));
flyGrid1.Rows.Items.Add( new Node(new object[] { 3, \"Hello3\" } ));
flyGrid1.Rows.Items.Add( new Node(new object[] { 4, \"Hello4\" } ));
}
}
}