Menu.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.SuspendLayout();
  32. //
  33. // Forma
  34. //
  35. this.Forma.Location = new System.Drawing.Point(275, 193);
  36. this.Forma.Name = "Forma";
  37. this.Forma.Size = new System.Drawing.Size(75, 23);
  38. this.Forma.TabIndex = 0;
  39. this.Forma.Text = "Forma";
  40. this.Forma.UseVisualStyleBackColor = true;
  41. this.Forma.Click += new System.EventHandler(this.Forma_Click);
  42. //
  43. // Forma1
  44. //
  45. this.Forma1.Location = new System.Drawing.Point(416, 193);
  46. this.Forma1.Name = "Forma1";
  47. this.Forma1.Size = new System.Drawing.Size(75, 23);
  48. this.Forma1.TabIndex = 1;
  49. this.Forma1.Text = "Forma1";
  50. this.Forma1.UseVisualStyleBackColor = true;
  51. this.Forma1.Click += new System.EventHandler(this.Forma1_Click);
  52. //
  53. // button1
  54. //
  55. this.button1.Location = new System.Drawing.Point(699, 415);
  56. this.button1.Name = "button1";
  57. this.button1.Size = new System.Drawing.Size(75, 23);
  58. this.button1.TabIndex = 2;
  59. this.button1.Text = "close";
  60. this.button1.UseVisualStyleBackColor = true;
  61. this.button1.Click += new System.EventHandler(this.button1_Click);
  62. //
  63. // Menu
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(800, 450);
  68. this.Controls.Add(this.button1);
  69. this.Controls.Add(this.Forma1);
  70. this.Controls.Add(this.Forma);
  71. this.Name = "Menu";
  72. this.Text = "Menu";
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Button Forma;
  77. private System.Windows.Forms.Button Forma1;
  78. private System.Windows.Forms.Button button1;
  79. }
  80. }