Добавление.Designer.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. namespace Демо
  2. {
  3. partial class Добавление
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.btn_add = new System.Windows.Forms.Button();
  29. this.tb_naim = new System.Windows.Forms.TextBox();
  30. this.tb_dlitel = new System.Windows.Forms.TextBox();
  31. this.tb_stoim = new System.Windows.Forms.TextBox();
  32. this.tb_skidka = new System.Windows.Forms.TextBox();
  33. this.tb_izobr = new System.Windows.Forms.TextBox();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.button1 = new System.Windows.Forms.Button();
  40. this.SuspendLayout();
  41. //
  42. // btn_add
  43. //
  44. this.btn_add.DialogResult = System.Windows.Forms.DialogResult.OK;
  45. this.btn_add.Location = new System.Drawing.Point(43, 379);
  46. this.btn_add.Name = "btn_add";
  47. this.btn_add.Size = new System.Drawing.Size(108, 31);
  48. this.btn_add.TabIndex = 0;
  49. this.btn_add.Text = "Добавить";
  50. this.btn_add.UseVisualStyleBackColor = true;
  51. this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
  52. //
  53. // tb_naim
  54. //
  55. this.tb_naim.Location = new System.Drawing.Point(74, 60);
  56. this.tb_naim.Name = "tb_naim";
  57. this.tb_naim.Size = new System.Drawing.Size(165, 20);
  58. this.tb_naim.TabIndex = 1;
  59. //
  60. // tb_dlitel
  61. //
  62. this.tb_dlitel.Location = new System.Drawing.Point(74, 123);
  63. this.tb_dlitel.Name = "tb_dlitel";
  64. this.tb_dlitel.Size = new System.Drawing.Size(165, 20);
  65. this.tb_dlitel.TabIndex = 2;
  66. //
  67. // tb_stoim
  68. //
  69. this.tb_stoim.Location = new System.Drawing.Point(74, 193);
  70. this.tb_stoim.Name = "tb_stoim";
  71. this.tb_stoim.Size = new System.Drawing.Size(165, 20);
  72. this.tb_stoim.TabIndex = 3;
  73. //
  74. // tb_skidka
  75. //
  76. this.tb_skidka.Location = new System.Drawing.Point(74, 253);
  77. this.tb_skidka.Name = "tb_skidka";
  78. this.tb_skidka.Size = new System.Drawing.Size(165, 20);
  79. this.tb_skidka.TabIndex = 4;
  80. //
  81. // tb_izobr
  82. //
  83. this.tb_izobr.Location = new System.Drawing.Point(74, 315);
  84. this.tb_izobr.Name = "tb_izobr";
  85. this.tb_izobr.Size = new System.Drawing.Size(165, 20);
  86. this.tb_izobr.TabIndex = 5;
  87. //
  88. // label1
  89. //
  90. this.label1.AutoSize = true;
  91. this.label1.Location = new System.Drawing.Point(74, 41);
  92. this.label1.Name = "label1";
  93. this.label1.Size = new System.Drawing.Size(83, 13);
  94. this.label1.TabIndex = 6;
  95. this.label1.Text = "Наименование";
  96. //
  97. // label2
  98. //
  99. this.label2.AutoSize = true;
  100. this.label2.Location = new System.Drawing.Point(74, 107);
  101. this.label2.Name = "label2";
  102. this.label2.Size = new System.Drawing.Size(118, 13);
  103. this.label2.TabIndex = 7;
  104. this.label2.Text = "Длительность (в мин)";
  105. //
  106. // label3
  107. //
  108. this.label3.AutoSize = true;
  109. this.label3.Location = new System.Drawing.Point(74, 177);
  110. this.label3.Name = "label3";
  111. this.label3.Size = new System.Drawing.Size(97, 13);
  112. this.label3.TabIndex = 8;
  113. this.label3.Text = "Стоимость (в руб)";
  114. //
  115. // label4
  116. //
  117. this.label4.AutoSize = true;
  118. this.label4.Location = new System.Drawing.Point(74, 237);
  119. this.label4.Name = "label4";
  120. this.label4.Size = new System.Drawing.Size(44, 13);
  121. this.label4.TabIndex = 9;
  122. this.label4.Text = "Скидка";
  123. //
  124. // label5
  125. //
  126. this.label5.AutoSize = true;
  127. this.label5.Location = new System.Drawing.Point(74, 299);
  128. this.label5.Name = "label5";
  129. this.label5.Size = new System.Drawing.Size(77, 13);
  130. this.label5.TabIndex = 10;
  131. this.label5.Text = "Изображение";
  132. //
  133. // button1
  134. //
  135. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  136. this.button1.Location = new System.Drawing.Point(166, 379);
  137. this.button1.Name = "button1";
  138. this.button1.Size = new System.Drawing.Size(108, 31);
  139. this.button1.TabIndex = 11;
  140. this.button1.Text = "Закрыть";
  141. this.button1.UseVisualStyleBackColor = true;
  142. //
  143. // Добавление
  144. //
  145. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  146. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  147. this.ClientSize = new System.Drawing.Size(321, 437);
  148. this.Controls.Add(this.button1);
  149. this.Controls.Add(this.label5);
  150. this.Controls.Add(this.label4);
  151. this.Controls.Add(this.label3);
  152. this.Controls.Add(this.label2);
  153. this.Controls.Add(this.label1);
  154. this.Controls.Add(this.tb_izobr);
  155. this.Controls.Add(this.tb_skidka);
  156. this.Controls.Add(this.tb_stoim);
  157. this.Controls.Add(this.tb_dlitel);
  158. this.Controls.Add(this.tb_naim);
  159. this.Controls.Add(this.btn_add);
  160. this.Name = "Добавление";
  161. this.Text = "Form1";
  162. this.ResumeLayout(false);
  163. this.PerformLayout();
  164. }
  165. #endregion
  166. private System.Windows.Forms.Button btn_add;
  167. private System.Windows.Forms.Label label1;
  168. private System.Windows.Forms.Label label2;
  169. private System.Windows.Forms.Label label3;
  170. private System.Windows.Forms.Label label4;
  171. private System.Windows.Forms.Label label5;
  172. public System.Windows.Forms.TextBox tb_naim;
  173. public System.Windows.Forms.TextBox tb_dlitel;
  174. public System.Windows.Forms.TextBox tb_stoim;
  175. public System.Windows.Forms.TextBox tb_skidka;
  176. public System.Windows.Forms.TextBox tb_izobr;
  177. private System.Windows.Forms.Button button1;
  178. }
  179. }