namespace IT_Company.Forms { partial class FormService { /// /// 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() { description = new TextBox(); price = new TextBox(); labelDescription = new Label(); labelPrice = new Label(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // description // description.Anchor = AnchorStyles.Top | AnchorStyles.Right; description.Location = new Point(226, 12); description.Name = "description"; description.Size = new Size(151, 27); description.TabIndex = 0; // // price // price.Anchor = AnchorStyles.Top | AnchorStyles.Right; price.Location = new Point(226, 45); price.Name = "price"; price.Size = new Size(151, 27); price.TabIndex = 1; price.KeyPress += price_KeyPress; // // labelDescription // labelDescription.AutoSize = true; labelDescription.Location = new Point(12, 15); labelDescription.Name = "labelDescription"; labelDescription.Size = new Size(82, 20); labelDescription.TabIndex = 5; labelDescription.Text = "Описание:"; // // labelPrice // labelPrice.AutoSize = true; labelPrice.Location = new Point(12, 48); labelPrice.Name = "labelPrice"; labelPrice.Size = new Size(48, 20); labelPrice.TabIndex = 6; labelPrice.Text = "Цена:"; // // buttonSave // buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; buttonSave.Location = new Point(12, 323); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 10; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonCancel.Location = new Point(283, 323); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 29); buttonCancel.TabIndex = 11; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormService // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(389, 362); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(labelPrice); Controls.Add(labelDescription); Controls.Add(price); Controls.Add(description); Name = "FormService"; StartPosition = FormStartPosition.CenterParent; Text = "Исполнитель"; ResumeLayout(false); PerformLayout(); } #endregion private TextBox description; private TextBox price; private TextBox bankAccount; private Label labelDescription; private Label labelPrice; private Label labelBankAccount; private Button buttonSave; private Button buttonCancel; } }