ChangeStatusForm.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. namespace WindowsFormsApp4
  2. {
  3. partial class ChangeStatusForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. private void InitializeComponent()
  15. {
  16. this.lblCurrentStatus = new System.Windows.Forms.Label();
  17. this.cmbNewStatus = new System.Windows.Forms.ComboBox();
  18. this.btnSave = new System.Windows.Forms.Button();
  19. this.btnCancel = new System.Windows.Forms.Button();
  20. this.label1 = new System.Windows.Forms.Label();
  21. this.lblTitle = new System.Windows.Forms.Label();
  22. this.panelHeader = new System.Windows.Forms.Panel();
  23. this.panelHeader.SuspendLayout();
  24. this.SuspendLayout();
  25. //
  26. // panelHeader
  27. //
  28. this.panelHeader.BackColor = System.Drawing.Color.FromArgb(50, 56, 67);
  29. this.panelHeader.Controls.Add(this.lblTitle);
  30. this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
  31. this.panelHeader.Location = new System.Drawing.Point(0, 0);
  32. this.panelHeader.Name = "panelHeader";
  33. this.panelHeader.Size = new System.Drawing.Size(400, 60);
  34. this.panelHeader.TabIndex = 0;
  35. //
  36. // lblTitle
  37. //
  38. this.lblTitle.AutoSize = true;
  39. this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold);
  40. this.lblTitle.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  41. this.lblTitle.Location = new System.Drawing.Point(100, 15);
  42. this.lblTitle.Name = "lblTitle";
  43. this.lblTitle.Size = new System.Drawing.Size(200, 31);
  44. this.lblTitle.Text = "Изменение статуса";
  45. //
  46. // lblCurrentStatus
  47. //
  48. this.lblCurrentStatus.AutoSize = true;
  49. this.lblCurrentStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  50. this.lblCurrentStatus.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  51. this.lblCurrentStatus.Location = new System.Drawing.Point(30, 80);
  52. this.lblCurrentStatus.Name = "lblCurrentStatus";
  53. this.lblCurrentStatus.Size = new System.Drawing.Size(150, 25);
  54. this.lblCurrentStatus.Text = "Текущий статус:";
  55. //
  56. // label1
  57. //
  58. this.label1.AutoSize = true;
  59. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  60. this.label1.ForeColor = System.Drawing.Color.FromArgb(203, 232, 87);
  61. this.label1.Location = new System.Drawing.Point(30, 130);
  62. this.label1.Name = "label1";
  63. this.label1.Size = new System.Drawing.Size(130, 25);
  64. this.label1.Text = "Новый статус:";
  65. //
  66. // cmbNewStatus
  67. //
  68. this.cmbNewStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  69. this.cmbNewStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  70. this.cmbNewStatus.Location = new System.Drawing.Point(170, 127);
  71. this.cmbNewStatus.Name = "cmbNewStatus";
  72. this.cmbNewStatus.Size = new System.Drawing.Size(180, 33);
  73. this.cmbNewStatus.TabIndex = 3;
  74. //
  75. // btnSave
  76. //
  77. this.btnSave.BackColor = System.Drawing.Color.FromArgb(198, 141, 255);
  78. this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  79. this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  80. this.btnSave.ForeColor = System.Drawing.Color.FromArgb(50, 56, 67);
  81. this.btnSave.Location = new System.Drawing.Point(60, 190);
  82. this.btnSave.Name = "btnSave";
  83. this.btnSave.Size = new System.Drawing.Size(120, 40);
  84. this.btnSave.Text = "✅ Сохранить";
  85. this.btnSave.UseVisualStyleBackColor = false;
  86. //
  87. // btnCancel
  88. //
  89. this.btnCancel.BackColor = System.Drawing.Color.FromArgb(203, 232, 87);
  90. this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  91. this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  92. this.btnCancel.ForeColor = System.Drawing.Color.FromArgb(50, 56, 67);
  93. this.btnCancel.Location = new System.Drawing.Point(200, 190);
  94. this.btnCancel.Name = "btnCancel";
  95. this.btnCancel.Size = new System.Drawing.Size(120, 40);
  96. this.btnCancel.Text = "❌ Отмена";
  97. this.btnCancel.UseVisualStyleBackColor = false;
  98. //
  99. // ChangeStatusForm
  100. //
  101. this.ClientSize = new System.Drawing.Size(400, 260);
  102. this.Controls.Add(this.btnCancel);
  103. this.Controls.Add(this.btnSave);
  104. this.Controls.Add(this.cmbNewStatus);
  105. this.Controls.Add(this.label1);
  106. this.Controls.Add(this.lblCurrentStatus);
  107. this.Controls.Add(this.panelHeader);
  108. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  109. this.MaximizeBox = false;
  110. this.Name = "ChangeStatusForm";
  111. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  112. this.Text = "Изменение статуса";
  113. this.panelHeader.ResumeLayout(false);
  114. this.panelHeader.PerformLayout();
  115. this.ResumeLayout(false);
  116. this.PerformLayout();
  117. }
  118. private System.Windows.Forms.Label lblCurrentStatus;
  119. private System.Windows.Forms.ComboBox cmbNewStatus;
  120. private System.Windows.Forms.Button btnSave;
  121. private System.Windows.Forms.Button btnCancel;
  122. private System.Windows.Forms.Label label1;
  123. private System.Windows.Forms.Label lblTitle;
  124. private System.Windows.Forms.Panel panelHeader;
  125. }
  126. }