Form2.Designer.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. 
  2. namespace Praktika5
  3. {
  4. partial class Form2
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</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 Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  30. this.SuspendLayout();
  31. //
  32. // menuStrip1
  33. //
  34. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  35. this.menuStrip1.Name = "menuStrip1";
  36. this.menuStrip1.Size = new System.Drawing.Size(800, 24);
  37. this.menuStrip1.TabIndex = 0;
  38. this.menuStrip1.Text = "menuStrip1";
  39. this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip1_ItemClicked);
  40. //
  41. // Form2
  42. //
  43. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  44. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  45. this.ClientSize = new System.Drawing.Size(800, 450);
  46. this.Controls.Add(this.menuStrip1);
  47. this.MainMenuStrip = this.menuStrip1;
  48. this.Name = "Form2";
  49. this.Text = "Form2";
  50. this.ResumeLayout(false);
  51. this.PerformLayout();
  52. }
  53. #endregion
  54. private System.Windows.Forms.MenuStrip menuStrip1;
  55. }
  56. }