this.components = new System.ComponentModel.Container();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.dataSet1 = new System.Data.DataSet();
this.dataTable1 = new System.Data.DataTable();
this.dataColumn1 = new System.Data.DataColumn();
this.dataColumn2 = new System.Data.DataColumn();
this.continuousControl1 = new Subro.Controls.ContinuousControl();
this.button1 = new System.Windows.Forms.Button();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.textBox1 = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.continuousControl1)).BeginInit();
this.SuspendLayout();
//
// bindingSource1
//
this.bindingSource1.DataMember = "Table1"
this.bindingSource1.DataSource = this.dataSet1;
//
// dataSet1
//
this.dataSet1.DataSetName = "NewDataSet"
this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
this.dataTable1});
//
// dataTable1
//
this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
this.dataColumn1,
this.dataColumn2});
this.dataTable1.TableName = "Table1"
//
// dataColumn1
//
this.dataColumn1.ColumnName = "colBool"
this.dataColumn1.DataType = typeof(bool);
this.dataColumn1.DefaultValue = false;
//
// dataColumn2
//
this.dataColumn2.ColumnName = "colText"
this.dataColumn2.DefaultValue = ""
//
// continuousControl1
//
this.continuousControl1.BindingSource = this.bindingSource1;
this.continuousControl1.InstanceControls.Add(this.button1);
this.continuousControl1.InstanceControls.Add(this.checkBox1);
this.continuousControl1.InstanceControls.Add(this.textBox1);
this.continuousControl1.Location = new System.Drawing.Point(24, 12);
this.continuousControl1.MinimumSize = new System.Drawing.Size(100, 24);
this.continuousControl1.Name = "continuousControl1"
this.continuousControl1.ShowNavigator = true;
this.continuousControl1.Size = new System.Drawing.Size(238, 230);
this.continuousControl1.TabIndex = 0;
//
// button1
//
this.button1.Location = new System.Drawing.Point(128, 18);
this.button1.Name = "button1"
this.button1.Size = new System.Drawing.Size(55, 29);
this.button1.TabIndex = 2;
this.button1.Text = "button1"
this.button1.UseVisualStyleBackColor = true;
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.bindingSource1, "colBool", true));
this.checkBox1.Location = new System.Drawing.Point(22, 4);
this.checkBox1.Name = "checkBox1"
this.checkBox1.Size = new System.Drawing.Size(80, 17);
this.checkBox1.TabIndex = 1;
this.checkBox1.Text = "checkBox1"
this.checkBox1.UseVisualStyleBackColor = true;
//
// textBox1
//
this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource1, "colText", true));
this.textBox1.Location = new System.Drawing.Point(22, 27);
this.textBox1.Name = "textBox1"
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 0;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(505, 326);
this.Controls.Add(this.continuousControl1);
this.Name = "Form1"
this.Text = "Form1"
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.continuousControl1)).EndInit();
this.ResumeLayout(false);