Form1.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. namespace Швейная_фабрика
  2. {
  3. partial class Form1
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.LblTitle = new System.Windows.Forms.Label();
  30. this.LblColor = new System.Windows.Forms.Label();
  31. this.LblWith = new System.Windows.Forms.Label();
  32. this.LblLength = new System.Windows.Forms.Label();
  33. this.LblComment = new System.Windows.Forms.Label();
  34. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  35. this.panel1.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // panel1
  40. //
  41. this.panel1.BackColor = System.Drawing.Color.White;
  42. this.panel1.Controls.Add(this.LblComment);
  43. this.panel1.Controls.Add(this.LblLength);
  44. this.panel1.Controls.Add(this.LblWith);
  45. this.panel1.Controls.Add(this.LblColor);
  46. this.panel1.Controls.Add(this.LblTitle);
  47. this.panel1.Controls.Add(this.pictureBox1);
  48. this.panel1.Location = new System.Drawing.Point(13, 13);
  49. this.panel1.Name = "panel1";
  50. this.panel1.Size = new System.Drawing.Size(390, 161);
  51. this.panel1.TabIndex = 0;
  52. //
  53. // LblTitle
  54. //
  55. this.LblTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  56. | System.Windows.Forms.AnchorStyles.Right)));
  57. this.LblTitle.Location = new System.Drawing.Point(225, 13);
  58. this.LblTitle.Name = "LblTitle";
  59. this.LblTitle.Size = new System.Drawing.Size(147, 23);
  60. this.LblTitle.TabIndex = 1;
  61. this.LblTitle.Text = "label1";
  62. //
  63. // LblColor
  64. //
  65. this.LblColor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  66. | System.Windows.Forms.AnchorStyles.Right)));
  67. this.LblColor.Location = new System.Drawing.Point(225, 41);
  68. this.LblColor.Name = "LblColor";
  69. this.LblColor.Size = new System.Drawing.Size(147, 23);
  70. this.LblColor.TabIndex = 2;
  71. this.LblColor.Text = "label2";
  72. //
  73. // LblWith
  74. //
  75. this.LblWith.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  76. | System.Windows.Forms.AnchorStyles.Right)));
  77. this.LblWith.Location = new System.Drawing.Point(225, 73);
  78. this.LblWith.Name = "LblWith";
  79. this.LblWith.Size = new System.Drawing.Size(147, 23);
  80. this.LblWith.TabIndex = 3;
  81. this.LblWith.Text = "label3";
  82. //
  83. // LblLength
  84. //
  85. this.LblLength.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  86. | System.Windows.Forms.AnchorStyles.Right)));
  87. this.LblLength.Location = new System.Drawing.Point(225, 100);
  88. this.LblLength.Name = "LblLength";
  89. this.LblLength.Size = new System.Drawing.Size(147, 23);
  90. this.LblLength.TabIndex = 4;
  91. this.LblLength.Text = "label4";
  92. //
  93. // LblComment
  94. //
  95. this.LblComment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  96. | System.Windows.Forms.AnchorStyles.Right)));
  97. this.LblComment.Location = new System.Drawing.Point(225, 126);
  98. this.LblComment.Name = "LblComment";
  99. this.LblComment.Size = new System.Drawing.Size(147, 29);
  100. this.LblComment.TabIndex = 5;
  101. this.LblComment.Text = "label5";
  102. //
  103. // pictureBox1
  104. //
  105. this.pictureBox1.Location = new System.Drawing.Point(16, 13);
  106. this.pictureBox1.Name = "pictureBox1";
  107. this.pictureBox1.Size = new System.Drawing.Size(175, 129);
  108. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  109. this.pictureBox1.TabIndex = 0;
  110. this.pictureBox1.TabStop = false;
  111. //
  112. // Form1
  113. //
  114. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  115. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  116. this.ClientSize = new System.Drawing.Size(800, 450);
  117. this.Controls.Add(this.panel1);
  118. this.Name = "Form1";
  119. this.Text = "Form1";
  120. this.panel1.ResumeLayout(false);
  121. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  122. this.ResumeLayout(false);
  123. }
  124. #endregion
  125. private System.Windows.Forms.Panel panel1;
  126. private System.Windows.Forms.Label LblComment;
  127. private System.Windows.Forms.Label LblLength;
  128. private System.Windows.Forms.Label LblWith;
  129. private System.Windows.Forms.Label LblColor;
  130. private System.Windows.Forms.Label LblTitle;
  131. private System.Windows.Forms.PictureBox pictureBox1;
  132. }
  133. }