AddExemplarsForm.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. namespace WindowsFormsApp4
  2. {
  3. partial class AddExemplarsForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. components.Dispose();
  10. base.Dispose(disposing);
  11. }
  12. private void InitializeComponent()
  13. {
  14. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddExemplarsForm));
  15. this.labelTitle = new System.Windows.Forms.Label();
  16. this.labelBook = new System.Windows.Forms.Label();
  17. this.cmbBook = new System.Windows.Forms.ComboBox();
  18. this.labelNewCount = new System.Windows.Forms.Label();
  19. this.numericNewCount = new System.Windows.Forms.NumericUpDown();
  20. this.btnAdd = new System.Windows.Forms.Button();
  21. this.btnCancel = new System.Windows.Forms.Button();
  22. this.groupHelp = new System.Windows.Forms.GroupBox();
  23. this.labelHelp = new System.Windows.Forms.Label();
  24. ((System.ComponentModel.ISupportInitialize)(this.numericNewCount)).BeginInit();
  25. this.groupHelp.SuspendLayout();
  26. this.SuspendLayout();
  27. //
  28. // labelTitle
  29. //
  30. this.labelTitle.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold);
  31. this.labelTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
  32. this.labelTitle.Location = new System.Drawing.Point(12, 9);
  33. this.labelTitle.Name = "labelTitle";
  34. this.labelTitle.Size = new System.Drawing.Size(400, 30);
  35. this.labelTitle.TabIndex = 7;
  36. this.labelTitle.Text = "Добавление экземпляров книги";
  37. //
  38. // labelBook
  39. //
  40. this.labelBook.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
  41. this.labelBook.Location = new System.Drawing.Point(30, 70);
  42. this.labelBook.Name = "labelBook";
  43. this.labelBook.Size = new System.Drawing.Size(100, 23);
  44. this.labelBook.TabIndex = 6;
  45. this.labelBook.Text = "Книга:*";
  46. //
  47. // cmbBook
  48. //
  49. this.cmbBook.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  50. this.cmbBook.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
  51. this.cmbBook.Location = new System.Drawing.Point(130, 68);
  52. this.cmbBook.Name = "cmbBook";
  53. this.cmbBook.Size = new System.Drawing.Size(350, 21);
  54. this.cmbBook.TabIndex = 0;
  55. this.cmbBook.SelectedIndexChanged += new System.EventHandler(this.cmbBook_SelectedIndexChanged);
  56. //
  57. // labelNewCount
  58. //
  59. this.labelNewCount.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
  60. this.labelNewCount.Location = new System.Drawing.Point(30, 110);
  61. this.labelNewCount.Name = "labelNewCount";
  62. this.labelNewCount.Size = new System.Drawing.Size(150, 23);
  63. this.labelNewCount.TabIndex = 5;
  64. this.labelNewCount.Text = "Количество новых экз.:*";
  65. //
  66. // numericNewCount
  67. //
  68. this.numericNewCount.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
  69. this.numericNewCount.Location = new System.Drawing.Point(190, 110);
  70. this.numericNewCount.Minimum = new decimal(new int[] {
  71. 1,
  72. 0,
  73. 0,
  74. 0});
  75. this.numericNewCount.Name = "numericNewCount";
  76. this.numericNewCount.Size = new System.Drawing.Size(80, 20);
  77. this.numericNewCount.TabIndex = 1;
  78. this.numericNewCount.Value = new decimal(new int[] {
  79. 1,
  80. 0,
  81. 0,
  82. 0});
  83. //
  84. // btnAdd
  85. //
  86. this.btnAdd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(74)))), ((int)(((byte)(58)))));
  87. this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  88. this.btnAdd.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(221)))), ((int)(((byte)(200)))));
  89. this.btnAdd.Location = new System.Drawing.Point(130, 160);
  90. this.btnAdd.Name = "btnAdd";
  91. this.btnAdd.Size = new System.Drawing.Size(120, 35);
  92. this.btnAdd.TabIndex = 2;
  93. this.btnAdd.Text = "Добавить";
  94. this.btnAdd.UseVisualStyleBackColor = false;
  95. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  96. //
  97. // btnCancel
  98. //
  99. this.btnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(74)))), ((int)(((byte)(58)))));
  100. this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  101. this.btnCancel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(221)))), ((int)(((byte)(200)))));
  102. this.btnCancel.Location = new System.Drawing.Point(280, 160);
  103. this.btnCancel.Name = "btnCancel";
  104. this.btnCancel.Size = new System.Drawing.Size(120, 35);
  105. this.btnCancel.TabIndex = 3;
  106. this.btnCancel.Text = "Отмена";
  107. this.btnCancel.UseVisualStyleBackColor = false;
  108. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  109. //
  110. // groupHelp
  111. //
  112. this.groupHelp.Controls.Add(this.labelHelp);
  113. this.groupHelp.Location = new System.Drawing.Point(30, 210);
  114. this.groupHelp.Name = "groupHelp";
  115. this.groupHelp.Size = new System.Drawing.Size(450, 100);
  116. this.groupHelp.TabIndex = 4;
  117. this.groupHelp.TabStop = false;
  118. this.groupHelp.Text = "Пояснение";
  119. //
  120. // labelHelp
  121. //
  122. this.labelHelp.Font = new System.Drawing.Font("Segoe UI", 9F);
  123. this.labelHelp.ForeColor = System.Drawing.Color.DarkBlue;
  124. this.labelHelp.Location = new System.Drawing.Point(10, 20);
  125. this.labelHelp.Name = "labelHelp";
  126. this.labelHelp.Size = new System.Drawing.Size(430, 80);
  127. this.labelHelp.TabIndex = 0;
  128. this.labelHelp.Text = resources.GetString("labelHelp.Text");
  129. //
  130. // AddExemplarsForm
  131. //
  132. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  133. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  134. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(221)))), ((int)(((byte)(200)))));
  135. this.ClientSize = new System.Drawing.Size(520, 330);
  136. this.Controls.Add(this.groupHelp);
  137. this.Controls.Add(this.btnCancel);
  138. this.Controls.Add(this.btnAdd);
  139. this.Controls.Add(this.numericNewCount);
  140. this.Controls.Add(this.labelNewCount);
  141. this.Controls.Add(this.cmbBook);
  142. this.Controls.Add(this.labelBook);
  143. this.Controls.Add(this.labelTitle);
  144. this.Name = "AddExemplarsForm";
  145. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  146. this.Text = "Добавление экземпляров книги";
  147. this.Load += new System.EventHandler(this.AddExemplarsForm_Load);
  148. ((System.ComponentModel.ISupportInitialize)(this.numericNewCount)).EndInit();
  149. this.groupHelp.ResumeLayout(false);
  150. this.ResumeLayout(false);
  151. }
  152. private System.Windows.Forms.Label labelTitle;
  153. private System.Windows.Forms.Label labelBook;
  154. private System.Windows.Forms.ComboBox cmbBook;
  155. private System.Windows.Forms.Label labelNewCount;
  156. private System.Windows.Forms.NumericUpDown numericNewCount;
  157. private System.Windows.Forms.Button btnAdd;
  158. private System.Windows.Forms.Button btnCancel;
  159. private System.Windows.Forms.GroupBox groupHelp;
  160. private System.Windows.Forms.Label labelHelp;
  161. }
  162. }