1
0

Form1.Designer.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.LblID = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // flowLayoutPanel1
  34. //
  35. this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  36. | System.Windows.Forms.AnchorStyles.Left)
  37. | System.Windows.Forms.AnchorStyles.Right)));
  38. this.flowLayoutPanel1.AutoScroll = true;
  39. this.flowLayoutPanel1.Location = new System.Drawing.Point(27, 30);
  40. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  41. this.flowLayoutPanel1.Size = new System.Drawing.Size(773, 491);
  42. this.flowLayoutPanel1.TabIndex = 0;
  43. //
  44. // button1
  45. //
  46. this.button1.Location = new System.Drawing.Point(827, 30);
  47. this.button1.Name = "button1";
  48. this.button1.Size = new System.Drawing.Size(75, 23);
  49. this.button1.TabIndex = 1;
  50. this.button1.Text = "button1";
  51. this.button1.UseVisualStyleBackColor = true;
  52. this.button1.Click += new System.EventHandler(this.button1_Click);
  53. //
  54. // LblID
  55. //
  56. this.LblID.AutoSize = true;
  57. this.LblID.Location = new System.Drawing.Point(827, 103);
  58. this.LblID.Name = "LblID";
  59. this.LblID.Size = new System.Drawing.Size(44, 16);
  60. this.LblID.TabIndex = 2;
  61. this.LblID.Text = "label1";
  62. //
  63. // Form1
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(1067, 554);
  68. this.Controls.Add(this.LblID);
  69. this.Controls.Add(this.button1);
  70. this.Controls.Add(this.flowLayoutPanel1);
  71. this.Margin = new System.Windows.Forms.Padding(4);
  72. this.Name = "Form1";
  73. this.Text = "Form1";
  74. this.Load += new System.EventHandler(this.Form1_Load);
  75. this.ResumeLayout(false);
  76. this.PerformLayout();
  77. }
  78. #endregion
  79. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  80. private System.Windows.Forms.Button button1;
  81. private System.Windows.Forms.Label LblID;
  82. }
  83. }