public ArrayColumns(ArrayGrid grid) : base(grid) { }
public ArrayRows(ArrayGrid grid) : base(grid) { }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label3 = new System.Windows.Forms.Label(); this.cbArrayType = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.btLoad = new System.Windows.Forms.Button(); this.txtCols = new System.Windows.Forms.TextBox(); this.txtRows = new System.Windows.Forms.TextBox(); this.arrayGrid = new SourceGrid.ArrayGrid(); this.SuspendLayout(); // // label3 // this.label3.Location = new System.Drawing.Point(8, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(108, 16); this.label3.TabIndex = 24; this.label3.Text = "ArrayType:"; // // cbArrayType // this.cbArrayType.Location = new System.Drawing.Point(124, 4); this.cbArrayType.Name = "cbArrayType"; this.cbArrayType.Size = new System.Drawing.Size(144, 21); this.cbArrayType.TabIndex = 23; // // label2 // this.label2.Location = new System.Drawing.Point(8, 28); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(44, 23); this.label2.TabIndex = 22; this.label2.Text = "Rows:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // label1 // this.label1.Location = new System.Drawing.Point(132, 28); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 23); this.label1.TabIndex = 21; this.label1.Text = "Columns:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // btLoad // this.btLoad.FlatStyle = System.Windows.Forms.FlatStyle.System; this.btLoad.Location = new System.Drawing.Point(348, 28); this.btLoad.Name = "btLoad"; this.btLoad.TabIndex = 20; this.btLoad.Text = "Load"; this.btLoad.Click += new System.EventHandler(this.btLoad_Click); // // txtCols // this.txtCols.Location = new System.Drawing.Point(192, 28); this.txtCols.Name = "txtCols"; this.txtCols.Size = new System.Drawing.Size(72, 20); this.txtCols.TabIndex = 19; this.txtCols.Text = "1000"; // // txtRows // this.txtRows.Location = new System.Drawing.Point(56, 28); this.txtRows.Name = "txtRows"; this.txtRows.Size = new System.Drawing.Size(72, 20); this.txtRows.TabIndex = 18; this.txtRows.Text = "1000"; // // arrayGrid // this.arrayGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.arrayGrid.Location = new System.Drawing.Point(4, 56); this.arrayGrid.Name = "arrayGrid"; this.arrayGrid.Size = new System.Drawing.Size(420, 304); this.arrayGrid.SpecialKeys = SourceGrid.GridSpecialKeys.Default; this.arrayGrid.TabIndex = 25; // // frmSample27 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(428, 366); this.Controls.Add(this.arrayGrid); this.Controls.Add(this.label3); this.Controls.Add(this.cbArrayType); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.btLoad); this.Controls.Add(this.txtCols); this.Controls.Add(this.txtRows); this.Name = "frmSample27"; this.Text = "Array binding"; this.ResumeLayout(false); }
public ArrayColumns(ArrayGrid grid):base(grid) { }
public ArrayRows(ArrayGrid grid):base(grid) { }