namespace Session_4 { partial class AdminForm { /// /// 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AdminForm)); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.add_button = new System.Windows.Forms.ToolStripButton(); this.exit_button = new System.Windows.Forms.ToolStripButton(); this.label1 = new System.Windows.Forms.Label(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.officesBindingSource = new System.Windows.Forms.BindingSource(this.components); this.session3_4DataSet = new Session_4.Session3_4DataSet(); this.officesTableAdapter = new Session_4.Session3_4DataSetTableAdapters.OfficesTableAdapter(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.iDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.roleIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.emailDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.firstNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.lastNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.officeIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.birthdateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.activeDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components); this.usersTableAdapter = new Session_4.Session3_4DataSetTableAdapters.UsersTableAdapter(); this.all_offices_button = new System.Windows.Forms.Button(); this.enable_disable_button = new System.Windows.Forms.Button(); this.change_role_button = new System.Windows.Forms.Button(); this.toolStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.officesBindingSource)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.session3_4DataSet)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.add_button, this.exit_button}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(684, 26); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // add_button // this.add_button.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.add_button.Font = new System.Drawing.Font("Tw Cen MT", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.add_button.Image = ((System.Drawing.Image)(resources.GetObject("add_button.Image"))); this.add_button.ImageTransparentColor = System.Drawing.Color.Magenta; this.add_button.Name = "add_button"; this.add_button.Size = new System.Drawing.Size(70, 23); this.add_button.Text = "Add user"; this.add_button.Click += new System.EventHandler(this.add_button_Click); // // exit_button // this.exit_button.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.exit_button.Font = new System.Drawing.Font("Tw Cen MT", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.exit_button.Image = ((System.Drawing.Image)(resources.GetObject("exit_button.Image"))); this.exit_button.ImageTransparentColor = System.Drawing.Color.Magenta; this.exit_button.Name = "exit_button"; this.exit_button.Size = new System.Drawing.Size(35, 23); this.exit_button.Text = "Exit"; this.exit_button.Click += new System.EventHandler(this.exit_button_Click); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Tw Cen MT", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(13, 29); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(62, 22); this.label1.TabIndex = 1; this.label1.Text = "Office:"; // // comboBox1 // this.comboBox1.DataSource = this.officesBindingSource; this.comboBox1.DisplayMember = "Title"; this.comboBox1.Font = new System.Drawing.Font("Tw Cen MT", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.comboBox1.Location = new System.Drawing.Point(81, 28); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(207, 27); this.comboBox1.TabIndex = 2; this.comboBox1.ValueMember = "ID"; this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged); // // officesBindingSource // this.officesBindingSource.DataMember = "Offices"; this.officesBindingSource.DataSource = this.session3_4DataSet; // // session3_4DataSet // this.session3_4DataSet.DataSetName = "Session3_4DataSet"; this.session3_4DataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // officesTableAdapter // this.officesTableAdapter.ClearBeforeFill = true; // // dataGridView1 // this.dataGridView1.AutoGenerateColumns = false; this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.iDDataGridViewTextBoxColumn, this.roleIDDataGridViewTextBoxColumn, this.emailDataGridViewTextBoxColumn, this.passwordDataGridViewTextBoxColumn, this.firstNameDataGridViewTextBoxColumn, this.lastNameDataGridViewTextBoxColumn, this.officeIDDataGridViewTextBoxColumn, this.birthdateDataGridViewTextBoxColumn, this.activeDataGridViewCheckBoxColumn}); this.dataGridView1.DataSource = this.usersBindingSource; this.dataGridView1.Location = new System.Drawing.Point(13, 70); this.dataGridView1.MultiSelect = false; this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.ReadOnly = true; this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridView1.Size = new System.Drawing.Size(659, 244); this.dataGridView1.TabIndex = 3; // // iDDataGridViewTextBoxColumn // this.iDDataGridViewTextBoxColumn.DataPropertyName = "ID"; this.iDDataGridViewTextBoxColumn.HeaderText = "ID"; this.iDDataGridViewTextBoxColumn.Name = "iDDataGridViewTextBoxColumn"; this.iDDataGridViewTextBoxColumn.ReadOnly = true; // // roleIDDataGridViewTextBoxColumn // this.roleIDDataGridViewTextBoxColumn.DataPropertyName = "RoleID"; this.roleIDDataGridViewTextBoxColumn.HeaderText = "RoleID"; this.roleIDDataGridViewTextBoxColumn.Name = "roleIDDataGridViewTextBoxColumn"; this.roleIDDataGridViewTextBoxColumn.ReadOnly = true; // // emailDataGridViewTextBoxColumn // this.emailDataGridViewTextBoxColumn.DataPropertyName = "Email"; this.emailDataGridViewTextBoxColumn.HeaderText = "Email"; this.emailDataGridViewTextBoxColumn.Name = "emailDataGridViewTextBoxColumn"; this.emailDataGridViewTextBoxColumn.ReadOnly = true; // // passwordDataGridViewTextBoxColumn // this.passwordDataGridViewTextBoxColumn.DataPropertyName = "Password"; this.passwordDataGridViewTextBoxColumn.HeaderText = "Password"; this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn"; this.passwordDataGridViewTextBoxColumn.ReadOnly = true; // // firstNameDataGridViewTextBoxColumn // this.firstNameDataGridViewTextBoxColumn.DataPropertyName = "FirstName"; this.firstNameDataGridViewTextBoxColumn.HeaderText = "FirstName"; this.firstNameDataGridViewTextBoxColumn.Name = "firstNameDataGridViewTextBoxColumn"; this.firstNameDataGridViewTextBoxColumn.ReadOnly = true; // // lastNameDataGridViewTextBoxColumn // this.lastNameDataGridViewTextBoxColumn.DataPropertyName = "LastName"; this.lastNameDataGridViewTextBoxColumn.HeaderText = "LastName"; this.lastNameDataGridViewTextBoxColumn.Name = "lastNameDataGridViewTextBoxColumn"; this.lastNameDataGridViewTextBoxColumn.ReadOnly = true; // // officeIDDataGridViewTextBoxColumn // this.officeIDDataGridViewTextBoxColumn.DataPropertyName = "OfficeID"; this.officeIDDataGridViewTextBoxColumn.HeaderText = "OfficeID"; this.officeIDDataGridViewTextBoxColumn.Name = "officeIDDataGridViewTextBoxColumn"; this.officeIDDataGridViewTextBoxColumn.ReadOnly = true; // // birthdateDataGridViewTextBoxColumn // this.birthdateDataGridViewTextBoxColumn.DataPropertyName = "Birthdate"; this.birthdateDataGridViewTextBoxColumn.HeaderText = "Birthdate"; this.birthdateDataGridViewTextBoxColumn.Name = "birthdateDataGridViewTextBoxColumn"; this.birthdateDataGridViewTextBoxColumn.ReadOnly = true; // // activeDataGridViewCheckBoxColumn // this.activeDataGridViewCheckBoxColumn.DataPropertyName = "Active"; this.activeDataGridViewCheckBoxColumn.HeaderText = "Active"; this.activeDataGridViewCheckBoxColumn.Name = "activeDataGridViewCheckBoxColumn"; this.activeDataGridViewCheckBoxColumn.ReadOnly = true; // // usersBindingSource // this.usersBindingSource.DataMember = "Users"; this.usersBindingSource.DataSource = this.session3_4DataSet; // // usersTableAdapter // this.usersTableAdapter.ClearBeforeFill = true; // // all_offices_button // this.all_offices_button.Location = new System.Drawing.Point(294, 29); this.all_offices_button.Name = "all_offices_button"; this.all_offices_button.Size = new System.Drawing.Size(81, 26); this.all_offices_button.TabIndex = 4; this.all_offices_button.Text = "Все офисы"; this.all_offices_button.UseVisualStyleBackColor = true; this.all_offices_button.Visible = false; this.all_offices_button.Click += new System.EventHandler(this.all_offices_button_Click); // // enable_disable_button // this.enable_disable_button.Location = new System.Drawing.Point(110, 320); this.enable_disable_button.Name = "enable_disable_button"; this.enable_disable_button.Size = new System.Drawing.Size(122, 29); this.enable_disable_button.TabIndex = 5; this.enable_disable_button.Text = "Enable/Disable Login"; this.enable_disable_button.UseVisualStyleBackColor = true; this.enable_disable_button.Click += new System.EventHandler(this.enable_disable_button_Click); // // change_role_button // this.change_role_button.Location = new System.Drawing.Point(12, 320); this.change_role_button.Name = "change_role_button"; this.change_role_button.Size = new System.Drawing.Size(83, 29); this.change_role_button.TabIndex = 6; this.change_role_button.Text = "Change Role"; this.change_role_button.UseVisualStyleBackColor = true; this.change_role_button.Click += new System.EventHandler(this.change_role_button_Click); // // AdminForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(684, 361); this.Controls.Add(this.change_role_button); this.Controls.Add(this.enable_disable_button); this.Controls.Add(this.all_offices_button); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.comboBox1); this.Controls.Add(this.label1); this.Controls.Add(this.toolStrip1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "AdminForm"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "AMONIC Airliness Automation System"; this.Load += new System.EventHandler(this.AdminForm_Load); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.officesBindingSource)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.session3_4DataSet)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton add_button; private System.Windows.Forms.ToolStripButton exit_button; private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox comboBox1; private Session3_4DataSet session3_4DataSet; private Session3_4DataSetTableAdapters.OfficesTableAdapter officesTableAdapter; private Session3_4DataSetTableAdapters.UsersTableAdapter usersTableAdapter; private System.Windows.Forms.DataGridViewTextBoxColumn iDDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn roleIDDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn emailDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn passwordDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn firstNameDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn lastNameDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn officeIDDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn birthdateDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewCheckBoxColumn activeDataGridViewCheckBoxColumn; private System.Windows.Forms.BindingSource usersBindingSource; private System.Windows.Forms.BindingSource officesBindingSource; private System.Windows.Forms.Button all_offices_button; private System.Windows.Forms.Button enable_disable_button; private System.Windows.Forms.Button change_role_button; public System.Windows.Forms.DataGridView dataGridView1; } }