namespace PersonnelDepartmentView { partial class FormPosition { /// /// 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() { buttonCancel = new Button(); buttonSave = new Button(); label1 = new Label(); textBoxName = new TextBox(); SuspendLayout(); // // buttonCancel // buttonCancel.Location = new Point(112, 56); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(31, 56); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(75, 23); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // label1 // label1.AutoSize = true; label1.Location = new Point(15, 15); label1.Name = "label1"; label1.Size = new Size(62, 15); label1.TabIndex = 5; label1.Text = "Название:"; // // textBoxName // textBoxName.Location = new Point(80, 12); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(107, 23); textBoxName.TabIndex = 4; // // FormPosition // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(205, 92); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(label1); Controls.Add(textBoxName); FormBorderStyle = FormBorderStyle.FixedSingle; Name = "FormPosition"; StartPosition = FormStartPosition.CenterScreen; Text = "Должность"; Load += FormPosition_Load; ResumeLayout(false); PerformLayout(); } #endregion private Button buttonCancel; private Button buttonSave; private Label label1; private TextBox textBoxName; } }