Menu.Designer.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace WindowsFormsApp1
  2. {
  3. partial class Menu
  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.Forma = new System.Windows.Forms.Button();
  29. this.Forma1 = new System.Windows.Forms.Button();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.test = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // Forma
  35. //
  36. this.Forma.Location = new System.Drawing.Point(275, 193);
  37. this.Forma.Name = "Forma";
  38. this.Forma.Size = new System.Drawing.Size(75, 23);
  39. this.Forma.TabIndex = 0;
  40. this.Forma.Text = "Forma";
  41. this.Forma.UseVisualStyleBackColor = true;
  42. this.Forma.Click += new System.EventHandler(this.Forma_Click);
  43. //
  44. // Forma1
  45. //
  46. this.Forma1.Location = new System.Drawing.Point(416, 193);
  47. this.Forma1.Name = "Forma1";
  48. this.Forma1.Size = new System.Drawing.Size(75, 23);
  49. this.Forma1.TabIndex = 1;
  50. this.Forma1.Text = "Forma1";
  51. this.Forma1.UseVisualStyleBackColor = true;
  52. this.Forma1.Click += new System.EventHandler(this.Forma1_Click);
  53. //
  54. // button1
  55. //
  56. this.button1.Location = new System.Drawing.Point(699, 415);
  57. this.button1.Name = "button1";
  58. this.button1.Size = new System.Drawing.Size(75, 23);
  59. this.button1.TabIndex = 2;
  60. this.button1.Text = "close";
  61. this.button1.UseVisualStyleBackColor = true;
  62. this.button1.Click += new System.EventHandler(this.button1_Click);
  63. //
  64. // test
  65. //
  66. this.test.Location = new System.Drawing.Point(253, 380);
  67. this.test.Name = "test";
  68. this.test.Size = new System.Drawing.Size(75, 23);
  69. this.test.TabIndex = 3;
  70. this.test.Text = "Тест";
  71. this.test.UseVisualStyleBackColor = true;
  72. this.test.Click += new System.EventHandler(this.test_Click);
  73. //
  74. // Menu
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(800, 450);
  79. this.Controls.Add(this.test);
  80. this.Controls.Add(this.button1);
  81. this.Controls.Add(this.Forma1);
  82. this.Controls.Add(this.Forma);
  83. this.Name = "Menu";
  84. this.Text = "Menu";
  85. this.ResumeLayout(false);
  86. }
  87. #endregion
  88. private System.Windows.Forms.Button Forma;
  89. private System.Windows.Forms.Button Forma1;
  90. private System.Windows.Forms.Button button1;
  91. private System.Windows.Forms.Button test;
  92. }
  93. }