123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
-
- namespace Дол_Восток
- {
- partial class GLavn
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.Сотрудники = new System.Windows.Forms.TabPage();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.bt_change = new System.Windows.Forms.Button();
- this.bt_delete = new System.Windows.Forms.Button();
- this.bt_add = new System.Windows.Forms.Button();
- this.Sotrudnici = new System.Windows.Forms.DataGridView();
- this.Дети = new System.Windows.Forms.TabPage();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.bt_changeChild = new System.Windows.Forms.Button();
- this.bt_deleteChild = new System.Windows.Forms.Button();
- this.bt_addChild = new System.Windows.Forms.Button();
- this.Children = new System.Windows.Forms.DataGridView();
- this.tabControl1.SuspendLayout();
- this.Сотрудники.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.Sotrudnici)).BeginInit();
- this.Дети.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.Children)).BeginInit();
- this.SuspendLayout();
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.Сотрудники);
- this.tabControl1.Controls.Add(this.Дети);
- this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabControl1.Font = new System.Drawing.Font("aMavickFont", 12F, System.Drawing.FontStyle.Bold);
- this.tabControl1.Location = new System.Drawing.Point(0, 0);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(1090, 450);
- this.tabControl1.TabIndex = 0;
- this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
- //
- // Сотрудники
- //
- this.Сотрудники.Controls.Add(this.splitContainer1);
- this.Сотрудники.Location = new System.Drawing.Point(4, 26);
- this.Сотрудники.Name = "Сотрудники";
- this.Сотрудники.Padding = new System.Windows.Forms.Padding(3);
- this.Сотрудники.Size = new System.Drawing.Size(1082, 420);
- this.Сотрудники.TabIndex = 0;
- this.Сотрудники.Text = "Сотрудники";
- this.Сотрудники.UseVisualStyleBackColor = true;
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(3, 3);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(88)))), ((int)(((byte)(160)))));
- this.splitContainer1.Panel1.Controls.Add(this.bt_change);
- this.splitContainer1.Panel1.Controls.Add(this.bt_delete);
- this.splitContainer1.Panel1.Controls.Add(this.bt_add);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.Sotrudnici);
- this.splitContainer1.Panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel2_Paint);
- this.splitContainer1.Size = new System.Drawing.Size(1076, 414);
- this.splitContainer1.SplitterDistance = 114;
- this.splitContainer1.TabIndex = 0;
- //
- // bt_change
- //
- this.bt_change.BackColor = System.Drawing.SystemColors.Window;
- this.bt_change.Font = new System.Drawing.Font("aMavickFont", 12F, System.Drawing.FontStyle.Bold);
- this.bt_change.Location = new System.Drawing.Point(5, 225);
- this.bt_change.Name = "bt_change";
- this.bt_change.Size = new System.Drawing.Size(106, 41);
- this.bt_change.TabIndex = 2;
- this.bt_change.Text = "Изменить";
- this.bt_change.UseVisualStyleBackColor = false;
- this.bt_change.Click += new System.EventHandler(this.bt_change_Click);
- //
- // bt_delete
- //
- this.bt_delete.BackColor = System.Drawing.SystemColors.Window;
- this.bt_delete.Font = new System.Drawing.Font("aMavickFont", 12F, System.Drawing.FontStyle.Bold);
- this.bt_delete.Location = new System.Drawing.Point(5, 178);
- this.bt_delete.Name = "bt_delete";
- this.bt_delete.Size = new System.Drawing.Size(106, 41);
- this.bt_delete.TabIndex = 1;
- this.bt_delete.Text = "Удалить";
- this.bt_delete.UseVisualStyleBackColor = false;
- this.bt_delete.Click += new System.EventHandler(this.bt_delete_Click);
- //
- // bt_add
- //
- this.bt_add.BackColor = System.Drawing.SystemColors.Window;
- this.bt_add.Font = new System.Drawing.Font("aMavickFont", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.bt_add.Location = new System.Drawing.Point(5, 131);
- this.bt_add.Name = "bt_add";
- this.bt_add.Size = new System.Drawing.Size(106, 41);
- this.bt_add.TabIndex = 0;
- this.bt_add.Text = "Добавить";
- this.bt_add.UseVisualStyleBackColor = false;
- this.bt_add.Click += new System.EventHandler(this.bt_add_Click);
- //
- // Sotrudnici
- //
- this.Sotrudnici.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.Sotrudnici.Dock = System.Windows.Forms.DockStyle.Fill;
- this.Sotrudnici.Location = new System.Drawing.Point(0, 0);
- this.Sotrudnici.Name = "Sotrudnici";
- this.Sotrudnici.Size = new System.Drawing.Size(958, 414);
- this.Sotrudnici.TabIndex = 0;
- //
- // Дети
- //
- this.Дети.Controls.Add(this.splitContainer2);
- this.Дети.Location = new System.Drawing.Point(4, 26);
- this.Дети.Name = "Дети";
- this.Дети.Padding = new System.Windows.Forms.Padding(3);
- this.Дети.Size = new System.Drawing.Size(1082, 420);
- this.Дети.TabIndex = 1;
- this.Дети.Text = "Дети";
- this.Дети.UseVisualStyleBackColor = true;
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(3, 3);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(88)))), ((int)(((byte)(160)))));
- this.splitContainer2.Panel1.Controls.Add(this.bt_changeChild);
- this.splitContainer2.Panel1.Controls.Add(this.bt_deleteChild);
- this.splitContainer2.Panel1.Controls.Add(this.bt_addChild);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.Children);
- this.splitContainer2.Panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel2_Paint);
- this.splitContainer2.Size = new System.Drawing.Size(1076, 414);
- this.splitContainer2.SplitterDistance = 114;
- this.splitContainer2.TabIndex = 1;
- //
- // bt_changeChild
- //
- this.bt_changeChild.BackColor = System.Drawing.SystemColors.Window;
- this.bt_changeChild.Location = new System.Drawing.Point(5, 241);
- this.bt_changeChild.Name = "bt_changeChild";
- this.bt_changeChild.Size = new System.Drawing.Size(106, 39);
- this.bt_changeChild.TabIndex = 2;
- this.bt_changeChild.Text = "Изменить";
- this.bt_changeChild.UseVisualStyleBackColor = false;
- this.bt_changeChild.Click += new System.EventHandler(this.bt_changeChild_Click);
- //
- // bt_deleteChild
- //
- this.bt_deleteChild.BackColor = System.Drawing.SystemColors.Window;
- this.bt_deleteChild.Location = new System.Drawing.Point(5, 196);
- this.bt_deleteChild.Name = "bt_deleteChild";
- this.bt_deleteChild.Size = new System.Drawing.Size(106, 39);
- this.bt_deleteChild.TabIndex = 1;
- this.bt_deleteChild.Text = "Удалить";
- this.bt_deleteChild.UseVisualStyleBackColor = false;
- this.bt_deleteChild.Click += new System.EventHandler(this.bt_deleteChild_Click);
- //
- // bt_addChild
- //
- this.bt_addChild.BackColor = System.Drawing.SystemColors.Window;
- this.bt_addChild.Location = new System.Drawing.Point(5, 151);
- this.bt_addChild.Name = "bt_addChild";
- this.bt_addChild.Size = new System.Drawing.Size(106, 39);
- this.bt_addChild.TabIndex = 0;
- this.bt_addChild.Text = "Добавить";
- this.bt_addChild.UseVisualStyleBackColor = false;
- this.bt_addChild.Click += new System.EventHandler(this.bt_addChild_Click);
- //
- // Children
- //
- this.Children.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.Children.Dock = System.Windows.Forms.DockStyle.Fill;
- this.Children.Location = new System.Drawing.Point(0, 0);
- this.Children.Name = "Children";
- this.Children.Size = new System.Drawing.Size(958, 414);
- this.Children.TabIndex = 0;
- //
- // GLavn
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1090, 450);
- this.Controls.Add(this.tabControl1);
- this.Name = "GLavn";
- this.Text = "GLavn";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.GLavn_FormClosing);
- this.Load += new System.EventHandler(this.GLavn_Load);
- this.tabControl1.ResumeLayout(false);
- this.Сотрудники.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.Sotrudnici)).EndInit();
- this.Дети.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.Children)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage Сотрудники;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.TabPage Дети;
- private System.Windows.Forms.Button bt_change;
- private System.Windows.Forms.Button bt_delete;
- private System.Windows.Forms.Button bt_add;
- private System.Windows.Forms.DataGridView Sotrudnici;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private System.Windows.Forms.Button bt_changeChild;
- private System.Windows.Forms.Button bt_deleteChild;
- private System.Windows.Forms.Button bt_addChild;
- private System.Windows.Forms.DataGridView Children;
- }
- }
|