Main.Designer.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. namespace UAS_DeviceMonitor
  2. {
  3. partial class Main
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  29. this.tabControl1 = new System.Windows.Forms.TabControl();
  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(831, 24);
  37. this.menuStrip1.TabIndex = 0;
  38. this.menuStrip1.Text = "menuStrip1";
  39. //
  40. // tabControl1
  41. //
  42. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  43. this.tabControl1.Location = new System.Drawing.Point(0, 24);
  44. this.tabControl1.Name = "tabControl1";
  45. this.tabControl1.SelectedIndex = 0;
  46. this.tabControl1.Size = new System.Drawing.Size(831, 501);
  47. this.tabControl1.TabIndex = 1;
  48. //
  49. // Main
  50. //
  51. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  52. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  53. this.ClientSize = new System.Drawing.Size(831, 525);
  54. this.Controls.Add(this.tabControl1);
  55. this.Controls.Add(this.menuStrip1);
  56. this.MainMenuStrip = this.menuStrip1;
  57. this.Name = "Main";
  58. this.Text = "Form1";
  59. this.Load += new System.EventHandler(this.Main_Load);
  60. this.ResumeLayout(false);
  61. this.PerformLayout();
  62. }
  63. #endregion
  64. private System.Windows.Forms.MenuStrip menuStrip1;
  65. private System.Windows.Forms.TabControl tabControl1;
  66. }
  67. }