ClientEditForm.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. namespace WindowsFormsApp4
  2. {
  3. partial class ClientEditForm
  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.txtLastName = new System.Windows.Forms.TextBox();
  17. this.txtFirstName = new System.Windows.Forms.TextBox();
  18. this.txtMiddleName = new System.Windows.Forms.TextBox();
  19. this.txtPhone = new System.Windows.Forms.TextBox();
  20. this.btnSave = new System.Windows.Forms.Button();
  21. this.btnCancel = new System.Windows.Forms.Button();
  22. this.lblLastName = new System.Windows.Forms.Label();
  23. this.lblFirstName = new System.Windows.Forms.Label();
  24. this.lblMiddleName = new System.Windows.Forms.Label();
  25. this.lblPhone = new System.Windows.Forms.Label();
  26. this.lblTitle = new System.Windows.Forms.Label();
  27. this.panelHeader = new System.Windows.Forms.Panel();
  28. this.panelHeader.SuspendLayout();
  29. this.SuspendLayout();
  30. //
  31. // txtLastName
  32. //
  33. this.txtLastName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  34. this.txtLastName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  35. this.txtLastName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  36. this.txtLastName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  37. this.txtLastName.Location = new System.Drawing.Point(98, 63);
  38. this.txtLastName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  39. this.txtLastName.Name = "txtLastName";
  40. this.txtLastName.Size = new System.Drawing.Size(188, 23);
  41. this.txtLastName.TabIndex = 2;
  42. //
  43. // txtFirstName
  44. //
  45. this.txtFirstName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  46. this.txtFirstName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  47. this.txtFirstName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  48. this.txtFirstName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  49. this.txtFirstName.Location = new System.Drawing.Point(98, 91);
  50. this.txtFirstName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  51. this.txtFirstName.Name = "txtFirstName";
  52. this.txtFirstName.Size = new System.Drawing.Size(188, 23);
  53. this.txtFirstName.TabIndex = 4;
  54. //
  55. // txtMiddleName
  56. //
  57. this.txtMiddleName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  58. this.txtMiddleName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  59. this.txtMiddleName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  60. this.txtMiddleName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  61. this.txtMiddleName.Location = new System.Drawing.Point(98, 119);
  62. this.txtMiddleName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  63. this.txtMiddleName.Name = "txtMiddleName";
  64. this.txtMiddleName.Size = new System.Drawing.Size(188, 23);
  65. this.txtMiddleName.TabIndex = 6;
  66. //
  67. // txtPhone
  68. //
  69. this.txtPhone.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  70. this.txtPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  71. this.txtPhone.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  72. this.txtPhone.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  73. this.txtPhone.Location = new System.Drawing.Point(98, 148);
  74. this.txtPhone.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  75. this.txtPhone.Name = "txtPhone";
  76. this.txtPhone.Size = new System.Drawing.Size(188, 23);
  77. this.txtPhone.TabIndex = 8;
  78. //
  79. // btnSave
  80. //
  81. this.btnSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(141)))), ((int)(((byte)(255)))));
  82. this.btnSave.FlatAppearance.BorderSize = 0;
  83. this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  84. this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
  85. this.btnSave.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  86. this.btnSave.Location = new System.Drawing.Point(75, 195);
  87. this.btnSave.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  88. this.btnSave.Name = "btnSave";
  89. this.btnSave.Size = new System.Drawing.Size(104, 32);
  90. this.btnSave.TabIndex = 9;
  91. this.btnSave.Text = "Сохранить";
  92. this.btnSave.UseVisualStyleBackColor = false;
  93. this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
  94. //
  95. // btnCancel
  96. //
  97. this.btnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  98. this.btnCancel.FlatAppearance.BorderSize = 0;
  99. this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  100. this.btnCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
  101. this.btnCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  102. this.btnCancel.Location = new System.Drawing.Point(183, 195);
  103. this.btnCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  104. this.btnCancel.Name = "btnCancel";
  105. this.btnCancel.Size = new System.Drawing.Size(102, 32);
  106. this.btnCancel.TabIndex = 10;
  107. this.btnCancel.Text = "Отмена";
  108. this.btnCancel.UseVisualStyleBackColor = false;
  109. this.btnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
  110. //
  111. // lblLastName
  112. //
  113. this.lblLastName.AutoSize = true;
  114. this.lblLastName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  115. this.lblLastName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  116. this.lblLastName.Location = new System.Drawing.Point(28, 65);
  117. this.lblLastName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  118. this.lblLastName.Name = "lblLastName";
  119. this.lblLastName.Size = new System.Drawing.Size(74, 17);
  120. this.lblLastName.TabIndex = 1;
  121. this.lblLastName.Text = "Фамилия:";
  122. //
  123. // lblFirstName
  124. //
  125. this.lblFirstName.AutoSize = true;
  126. this.lblFirstName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  127. this.lblFirstName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  128. this.lblFirstName.Location = new System.Drawing.Point(52, 93);
  129. this.lblFirstName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  130. this.lblFirstName.Name = "lblFirstName";
  131. this.lblFirstName.Size = new System.Drawing.Size(39, 17);
  132. this.lblFirstName.TabIndex = 3;
  133. this.lblFirstName.Text = "Имя:";
  134. //
  135. // lblMiddleName
  136. //
  137. this.lblMiddleName.AutoSize = true;
  138. this.lblMiddleName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  139. this.lblMiddleName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  140. this.lblMiddleName.Location = new System.Drawing.Point(29, 125);
  141. this.lblMiddleName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  142. this.lblMiddleName.Name = "lblMiddleName";
  143. this.lblMiddleName.Size = new System.Drawing.Size(75, 17);
  144. this.lblMiddleName.TabIndex = 5;
  145. this.lblMiddleName.Text = "Отчество:";
  146. //
  147. // lblPhone
  148. //
  149. this.lblPhone.AutoSize = true;
  150. this.lblPhone.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
  151. this.lblPhone.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  152. this.lblPhone.Location = new System.Drawing.Point(30, 150);
  153. this.lblPhone.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  154. this.lblPhone.Name = "lblPhone";
  155. this.lblPhone.Size = new System.Drawing.Size(72, 17);
  156. this.lblPhone.TabIndex = 7;
  157. this.lblPhone.Text = "Телефон:";
  158. //
  159. // lblTitle
  160. //
  161. this.lblTitle.AutoSize = true;
  162. this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold);
  163. this.lblTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(232)))), ((int)(((byte)(87)))));
  164. this.lblTitle.Location = new System.Drawing.Point(90, 12);
  165. this.lblTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  166. this.lblTitle.Name = "lblTitle";
  167. this.lblTitle.Size = new System.Drawing.Size(195, 26);
  168. this.lblTitle.TabIndex = 0;
  169. this.lblTitle.Text = "Редактирование";
  170. //
  171. // panelHeader
  172. //
  173. this.panelHeader.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  174. this.panelHeader.Controls.Add(this.lblTitle);
  175. this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
  176. this.panelHeader.Location = new System.Drawing.Point(0, 0);
  177. this.panelHeader.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  178. this.panelHeader.Name = "panelHeader";
  179. this.panelHeader.Size = new System.Drawing.Size(338, 49);
  180. this.panelHeader.TabIndex = 0;
  181. //
  182. // ClientEditForm
  183. //
  184. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  185. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  186. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(56)))), ((int)(((byte)(67)))));
  187. this.ClientSize = new System.Drawing.Size(338, 260);
  188. this.Controls.Add(this.btnCancel);
  189. this.Controls.Add(this.btnSave);
  190. this.Controls.Add(this.txtPhone);
  191. this.Controls.Add(this.lblPhone);
  192. this.Controls.Add(this.txtMiddleName);
  193. this.Controls.Add(this.lblMiddleName);
  194. this.Controls.Add(this.txtFirstName);
  195. this.Controls.Add(this.lblFirstName);
  196. this.Controls.Add(this.txtLastName);
  197. this.Controls.Add(this.lblLastName);
  198. this.Controls.Add(this.panelHeader);
  199. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  200. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  201. this.MaximizeBox = false;
  202. this.Name = "ClientEditForm";
  203. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  204. this.Text = "Клиент";
  205. this.panelHeader.ResumeLayout(false);
  206. this.panelHeader.PerformLayout();
  207. this.ResumeLayout(false);
  208. this.PerformLayout();
  209. }
  210. private System.Windows.Forms.TextBox txtLastName;
  211. private System.Windows.Forms.TextBox txtFirstName;
  212. private System.Windows.Forms.TextBox txtMiddleName;
  213. private System.Windows.Forms.TextBox txtPhone;
  214. private System.Windows.Forms.Button btnSave;
  215. private System.Windows.Forms.Button btnCancel;
  216. private System.Windows.Forms.Label lblLastName;
  217. private System.Windows.Forms.Label lblFirstName;
  218. private System.Windows.Forms.Label lblMiddleName;
  219. private System.Windows.Forms.Label lblPhone;
  220. private System.Windows.Forms.Label lblTitle;
  221. private System.Windows.Forms.Panel panelHeader;
  222. }
  223. }