insertDrug.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. namespace hospital
  2. {
  3. partial class insertDrug
  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.drugNameTB = new System.Windows.Forms.TextBox();
  29. this.priceNUD = new System.Windows.Forms.NumericUpDown();
  30. this.addDrugBTN = new System.Windows.Forms.Button();
  31. this.backBTN = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. ((System.ComponentModel.ISupportInitialize)(this.priceNUD)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // drugNameTB
  39. //
  40. this.drugNameTB.Location = new System.Drawing.Point(18, 73);
  41. this.drugNameTB.Name = "drugNameTB";
  42. this.drugNameTB.Size = new System.Drawing.Size(100, 20);
  43. this.drugNameTB.TabIndex = 0;
  44. //
  45. // priceNUD
  46. //
  47. this.priceNUD.Location = new System.Drawing.Point(18, 114);
  48. this.priceNUD.Maximum = new decimal(new int[] {
  49. 10000000,
  50. 0,
  51. 0,
  52. 0});
  53. this.priceNUD.Minimum = new decimal(new int[] {
  54. 1,
  55. 0,
  56. 0,
  57. 0});
  58. this.priceNUD.Name = "priceNUD";
  59. this.priceNUD.Size = new System.Drawing.Size(100, 20);
  60. this.priceNUD.TabIndex = 1;
  61. this.priceNUD.Value = new decimal(new int[] {
  62. 1,
  63. 0,
  64. 0,
  65. 0});
  66. //
  67. // addDrugBTN
  68. //
  69. this.addDrugBTN.Location = new System.Drawing.Point(175, 156);
  70. this.addDrugBTN.Name = "addDrugBTN";
  71. this.addDrugBTN.Size = new System.Drawing.Size(75, 23);
  72. this.addDrugBTN.TabIndex = 2;
  73. this.addDrugBTN.Text = "Добавить";
  74. this.addDrugBTN.UseVisualStyleBackColor = true;
  75. this.addDrugBTN.Click += new System.EventHandler(this.button1_Click);
  76. //
  77. // backBTN
  78. //
  79. this.backBTN.Location = new System.Drawing.Point(25, 156);
  80. this.backBTN.Name = "backBTN";
  81. this.backBTN.Size = new System.Drawing.Size(75, 23);
  82. this.backBTN.TabIndex = 3;
  83. this.backBTN.Text = "Назад";
  84. this.backBTN.UseVisualStyleBackColor = true;
  85. this.backBTN.Click += new System.EventHandler(this.backBTN_Click);
  86. //
  87. // label1
  88. //
  89. this.label1.AutoSize = true;
  90. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  91. this.label1.Location = new System.Drawing.Point(13, 13);
  92. this.label1.Name = "label1";
  93. this.label1.Size = new System.Drawing.Size(244, 25);
  94. this.label1.TabIndex = 4;
  95. this.label1.Text = "Добавление лекарства";
  96. //
  97. // label2
  98. //
  99. this.label2.AutoSize = true;
  100. this.label2.Location = new System.Drawing.Point(15, 57);
  101. this.label2.Name = "label2";
  102. this.label2.Size = new System.Drawing.Size(57, 13);
  103. this.label2.TabIndex = 5;
  104. this.label2.Text = "Название";
  105. //
  106. // label3
  107. //
  108. this.label3.AutoSize = true;
  109. this.label3.Location = new System.Drawing.Point(15, 98);
  110. this.label3.Name = "label3";
  111. this.label3.Size = new System.Drawing.Size(62, 13);
  112. this.label3.TabIndex = 6;
  113. this.label3.Text = "Стоимость";
  114. //
  115. // insertDrug
  116. //
  117. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  118. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  119. this.ClientSize = new System.Drawing.Size(274, 190);
  120. this.Controls.Add(this.label3);
  121. this.Controls.Add(this.label2);
  122. this.Controls.Add(this.label1);
  123. this.Controls.Add(this.backBTN);
  124. this.Controls.Add(this.addDrugBTN);
  125. this.Controls.Add(this.priceNUD);
  126. this.Controls.Add(this.drugNameTB);
  127. this.Name = "insertDrug";
  128. this.Text = "insertDrug";
  129. this.Load += new System.EventHandler(this.insertDrug_Load);
  130. ((System.ComponentModel.ISupportInitialize)(this.priceNUD)).EndInit();
  131. this.ResumeLayout(false);
  132. this.PerformLayout();
  133. }
  134. #endregion
  135. private System.Windows.Forms.TextBox drugNameTB;
  136. private System.Windows.Forms.NumericUpDown priceNUD;
  137. private System.Windows.Forms.Button addDrugBTN;
  138. private System.Windows.Forms.Button backBTN;
  139. private System.Windows.Forms.Label label1;
  140. private System.Windows.Forms.Label label2;
  141. private System.Windows.Forms.Label label3;
  142. }
  143. }