Form1.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. 
  2. namespace WindowsFormsApp2
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Код, автоматически созданный конструктором форм Windows
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // linkLabel1
  35. //
  36. this.linkLabel1.AutoSize = true;
  37. this.linkLabel1.Location = new System.Drawing.Point(418, 133);
  38. this.linkLabel1.Name = "linkLabel1";
  39. this.linkLabel1.Size = new System.Drawing.Size(55, 13);
  40. this.linkLabel1.TabIndex = 0;
  41. this.linkLabel1.TabStop = true;
  42. this.linkLabel1.Text = "linkLabel1";
  43. //
  44. // label1
  45. //
  46. this.label1.AutoSize = true;
  47. this.label1.Location = new System.Drawing.Point(372, 189);
  48. this.label1.Name = "label1";
  49. this.label1.Size = new System.Drawing.Size(35, 13);
  50. this.label1.TabIndex = 1;
  51. this.label1.Text = "label1";
  52. //
  53. // button1
  54. //
  55. this.button1.Location = new System.Drawing.Point(430, 189);
  56. this.button1.Name = "button1";
  57. this.button1.Size = new System.Drawing.Size(75, 23);
  58. this.button1.TabIndex = 2;
  59. this.button1.Text = "button1";
  60. this.button1.UseVisualStyleBackColor = true;
  61. //
  62. // Form1
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(800, 450);
  67. this.Controls.Add(this.button1);
  68. this.Controls.Add(this.label1);
  69. this.Controls.Add(this.linkLabel1);
  70. this.Name = "Form1";
  71. this.Text = "Form1";
  72. this.ResumeLayout(false);
  73. this.PerformLayout();
  74. }
  75. #endregion
  76. private System.Windows.Forms.LinkLabel linkLabel1;
  77. private System.Windows.Forms.Label label1;
  78. private System.Windows.Forms.Button button1;
  79. }
  80. }