| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- namespace WindowsFormsApp4
- {
- partial class ChangeStatusForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.lblCurrentStatus = new System.Windows.Forms.Label();
- this.cmbNewStatus = new System.Windows.Forms.ComboBox();
- this.btnSave = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.lblTitle = new System.Windows.Forms.Label();
- this.panelHeader = new System.Windows.Forms.Panel();
- this.panelHeader.SuspendLayout();
- this.SuspendLayout();
- //
- // panelHeader
- //
- this.panelHeader.BackColor = System.Drawing.Color.FromArgb(50, 56, 67);
- this.panelHeader.Controls.Add(this.lblTitle);
- this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
- this.panelHeader.Location = new System.Drawing.Point(0, 0);
- this.panelHeader.Name = "panelHeader";
- this.panelHeader.Size = new System.Drawing.Size(400, 60);
- this.panelHeader.TabIndex = 0;
- //
- // lblTitle
- //
- this.lblTitle.AutoSize = true;
- this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold);
- this.lblTitle.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
- this.lblTitle.Location = new System.Drawing.Point(100, 15);
- this.lblTitle.Name = "lblTitle";
- this.lblTitle.Size = new System.Drawing.Size(200, 31);
- this.lblTitle.Text = "Изменение статуса";
- //
- // lblCurrentStatus
- //
- this.lblCurrentStatus.AutoSize = true;
- this.lblCurrentStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.lblCurrentStatus.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
- this.lblCurrentStatus.Location = new System.Drawing.Point(30, 80);
- this.lblCurrentStatus.Name = "lblCurrentStatus";
- this.lblCurrentStatus.Size = new System.Drawing.Size(150, 25);
- this.lblCurrentStatus.Text = "Текущий статус:";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.label1.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
- this.label1.Location = new System.Drawing.Point(30, 130);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(130, 25);
- this.label1.Text = "Новый статус:";
- //
- // cmbNewStatus
- //
- this.cmbNewStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbNewStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.cmbNewStatus.Location = new System.Drawing.Point(170, 127);
- this.cmbNewStatus.Name = "cmbNewStatus";
- this.cmbNewStatus.Size = new System.Drawing.Size(180, 33);
- this.cmbNewStatus.TabIndex = 3;
- //
- // btnSave
- //
- this.btnSave.BackColor = System.Drawing.Color.FromArgb(198, 141, 255);
- this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
- this.btnSave.ForeColor = System.Drawing.Color.FromArgb(50, 56, 67);
- this.btnSave.Location = new System.Drawing.Point(60, 190);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(120, 40);
- this.btnSave.Text = "✅ Сохранить";
- this.btnSave.UseVisualStyleBackColor = false;
- //
- // btnCancel
- //
- this.btnCancel.BackColor = System.Drawing.Color.FromArgb(203, 232, 87);
- this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
- this.btnCancel.ForeColor = System.Drawing.Color.FromArgb(50, 56, 67);
- this.btnCancel.Location = new System.Drawing.Point(200, 190);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(120, 40);
- this.btnCancel.Text = "❌ Отмена";
- this.btnCancel.UseVisualStyleBackColor = false;
- //
- // ChangeStatusForm
- //
- this.ClientSize = new System.Drawing.Size(400, 260);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnSave);
- this.Controls.Add(this.cmbNewStatus);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.lblCurrentStatus);
- this.Controls.Add(this.panelHeader);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.MaximizeBox = false;
- this.Name = "ChangeStatusForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Изменение статуса";
- this.panelHeader.ResumeLayout(false);
- this.panelHeader.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- private System.Windows.Forms.Label lblCurrentStatus;
- private System.Windows.Forms.ComboBox cmbNewStatus;
- private System.Windows.Forms.Button btnSave;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label lblTitle;
- private System.Windows.Forms.Panel panelHeader;
- }
- }
|