namespace DBWizard { partial class frmSchoolEditor { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.Label schoolNameLabel; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSchoolEditor)); this.schoolBindingSource = new System.Windows.Forms.BindingSource(this.components); this.schoolNameTextBox = new System.Windows.Forms.TextBox(); this.btnAddSchool = new System.Windows.Forms.Button(); this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components); schoolNameLabel = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.schoolBindingSource)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit(); this.SuspendLayout(); // // schoolNameLabel // schoolNameLabel.AutoSize = true; schoolNameLabel.Font = new System.Drawing.Font("Sitka Display", 10.875F); schoolNameLabel.Location = new System.Drawing.Point(-2, 19); schoolNameLabel.Name = "schoolNameLabel"; schoolNameLabel.Size = new System.Drawing.Size(229, 32); schoolNameLabel.TabIndex = 1; schoolNameLabel.Text = "Enter New School Name:"; // // schoolBindingSource // this.schoolBindingSource.DataSource = typeof(DBWizard.Models.School); // // schoolNameTextBox // this.schoolNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.schoolBindingSource, "name", true)); this.schoolNameTextBox.Font = new System.Drawing.Font("Sitka Display", 10.875F); this.schoolNameTextBox.Location = new System.Drawing.Point(25, 54); this.schoolNameTextBox.Name = "schoolNameTextBox"; this.schoolNameTextBox.Size = new System.Drawing.Size(202, 35); this.schoolNameTextBox.TabIndex = 2; this.schoolNameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameTextBox_Validating); // // btnAddSchool // this.btnAddSchool.Font = new System.Drawing.Font("Sitka Display", 10.875F); this.btnAddSchool.Location = new System.Drawing.Point(243, 26); this.btnAddSchool.Name = "btnAddSchool"; this.btnAddSchool.Size = new System.Drawing.Size(109, 89); this.btnAddSchool.TabIndex = 3; this.btnAddSchool.Text = "Add School"; this.btnAddSchool.UseVisualStyleBackColor = true; this.btnAddSchool.Click += new System.EventHandler(this.btnAddSchool_Click); // // errorProvider1 // this.errorProvider1.ContainerControl = this; // // frmSchoolEditor // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(364, 133); this.Controls.Add(this.btnAddSchool); this.Controls.Add(schoolNameLabel); this.Controls.Add(this.schoolNameTextBox); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "frmSchoolEditor"; this.Text = "School Editor"; ((System.ComponentModel.ISupportInitialize)(this.schoolBindingSource)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.BindingSource schoolBindingSource; private System.Windows.Forms.TextBox schoolNameTextBox; private System.Windows.Forms.Button btnAddSchool; private System.Windows.Forms.ErrorProvider errorProvider1; } }