1
0

Form2.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. namespace Пример_плиточного_интерфейса
  2. {
  3. partial class Form2
  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.PbxPhoto = new System.Windows.Forms.PictureBox();
  30. this.LblName = new System.Windows.Forms.Label();
  31. this.LblCount = new System.Windows.Forms.Label();
  32. this.panel1.SuspendLayout();
  33. ((System.ComponentModel.ISupportInitialize)(this.PbxPhoto)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // panel1
  37. //
  38. this.panel1.BackColor = System.Drawing.Color.White;
  39. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  40. this.panel1.Controls.Add(this.LblCount);
  41. this.panel1.Controls.Add(this.LblName);
  42. this.panel1.Controls.Add(this.PbxPhoto);
  43. this.panel1.Location = new System.Drawing.Point(45, 43);
  44. this.panel1.Name = "panel1";
  45. this.panel1.Size = new System.Drawing.Size(182, 175);
  46. this.panel1.TabIndex = 0;
  47. //
  48. // PbxPhoto
  49. //
  50. this.PbxPhoto.Location = new System.Drawing.Point(38, 21);
  51. this.PbxPhoto.Name = "PbxPhoto";
  52. this.PbxPhoto.Size = new System.Drawing.Size(100, 86);
  53. this.PbxPhoto.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  54. this.PbxPhoto.TabIndex = 0;
  55. this.PbxPhoto.TabStop = false;
  56. //
  57. // LblName
  58. //
  59. this.LblName.AutoSize = true;
  60. this.LblName.Location = new System.Drawing.Point(15, 114);
  61. this.LblName.Name = "LblName";
  62. this.LblName.Size = new System.Drawing.Size(44, 16);
  63. this.LblName.TabIndex = 1;
  64. this.LblName.Text = "label1";
  65. //
  66. // LblCount
  67. //
  68. this.LblCount.AutoSize = true;
  69. this.LblCount.Location = new System.Drawing.Point(15, 140);
  70. this.LblCount.Name = "LblCount";
  71. this.LblCount.Size = new System.Drawing.Size(44, 16);
  72. this.LblCount.TabIndex = 2;
  73. this.LblCount.Text = "label2";
  74. //
  75. // Form2
  76. //
  77. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  78. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  79. this.ClientSize = new System.Drawing.Size(800, 450);
  80. this.Controls.Add(this.panel1);
  81. this.Name = "Form2";
  82. this.Text = "Form2";
  83. this.panel1.ResumeLayout(false);
  84. this.panel1.PerformLayout();
  85. ((System.ComponentModel.ISupportInitialize)(this.PbxPhoto)).EndInit();
  86. this.ResumeLayout(false);
  87. }
  88. #endregion
  89. private System.Windows.Forms.Panel panel1;
  90. public System.Windows.Forms.Label LblCount;
  91. public System.Windows.Forms.Label LblName;
  92. public System.Windows.Forms.PictureBox PbxPhoto;
  93. }
  94. }